Skip to content

Commit

Permalink
[Logging] Minor improvements to log lines related to accounting.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarciani committed Jul 16, 2024
1 parent 63e1c81 commit c77b415
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ function SlurmAccounting(
request('post', url, args)
.then((response: any) => {
if (response.status === 200) {
console.log(response.data)
console.log("Accounting data retrieved", response.data)
successCallback && successCallback(response.data)
}
})
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/old-pages/Clusters/Accounting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function CostEstimate({job}: any) {
}

function JobProperties({job}: any) {
console.log(job)
console.log("Processing job properties for job", job)
return (
<Container>
<SpaceBetween direction="vertical" size="l">
Expand Down

0 comments on commit c77b415

Please sign in to comment.