Skip to content

Commit c77b415

Browse files
committed
[Logging] Minor improvements to log lines related to accounting.
1 parent 63e1c81 commit c77b415

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/model.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ function SlurmAccounting(
879879
request('post', url, args)
880880
.then((response: any) => {
881881
if (response.status === 200) {
882-
console.log(response.data)
882+
console.log("Accounting data retrieved", response.data)
883883
successCallback && successCallback(response.data)
884884
}
885885
})

frontend/src/old-pages/Clusters/Accounting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ function CostEstimate({job}: any) {
266266
}
267267

268268
function JobProperties({job}: any) {
269-
console.log(job)
269+
console.log("Processing job properties for job", job)
270270
return (
271271
<Container>
272272
<SpaceBetween direction="vertical" size="l">

0 commit comments

Comments
 (0)