We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e1c81 commit c77b415Copy full SHA for c77b415
frontend/src/model.tsx
@@ -879,7 +879,7 @@ function SlurmAccounting(
879
request('post', url, args)
880
.then((response: any) => {
881
if (response.status === 200) {
882
- console.log(response.data)
+ console.log("Accounting data retrieved", response.data)
883
successCallback && successCallback(response.data)
884
}
885
})
frontend/src/old-pages/Clusters/Accounting.tsx
@@ -266,7 +266,7 @@ function CostEstimate({job}: any) {
266
267
268
function JobProperties({job}: any) {
269
- console.log(job)
+ console.log("Processing job properties for job", job)
270
return (
271
<Container>
272
<SpaceBetween direction="vertical" size="l">
0 commit comments