Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 2bc731a

Browse files
committed
Log Spec and Status individually
This should log more of the nested objects
1 parent 340f852 commit 2bc731a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/integration/helpers.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ async function logJob(name) {
3939
name,
4040
namespace,
4141
);
42-
console.log(`Job: '${name}'`)
43-
console.dir(job)
42+
console.log(`Job: '${name}' Spec:`)
43+
console.dir(job.spec)
44+
console.log(`Job: '${name}' Status:`)
45+
console.dir(job.status)
4446
} catch (error) {
4547
console.info(`Job: '${name} not found.'`)
46-
console.error(error)
4748
}
4849
}
4950

0 commit comments

Comments
 (0)