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.
2 parents e32c336 + 815a425 commit a1d60f4Copy full SHA for a1d60f4
src/index.ts
@@ -53,7 +53,13 @@ function cleanUpTempStorage() {
53
54
async function monitor(): Promise<void> {
55
try {
56
- logger.info({ cluster: currentClusterName }, 'starting to monitor');
+ logger.info(
57
+ {
58
+ cluster: currentClusterName,
59
+ useKeepalive: config.USE_KEEPALIVE,
60
+ },
61
+ 'starting to monitor',
62
+ );
63
await beginWatchingWorkloads();
64
} catch (error) {
65
logger.error({ error }, 'an error occurred while monitoring the cluster');
0 commit comments