Comparing version 0.0.24-next.0 to 0.0.24-next.1
@@ -628,3 +628,7 @@ #!/usr/bin/env node | ||
tailRealTimeLogsForLambdas(key, realTimeLogsFunctionMap[key].map(({functionName}) => functionName)).on("log", (log) => { | ||
loggers[log.lambda].log(...log.log); | ||
if (loggers[log.lambda]) { | ||
loggers[log.lambda].log(...log.log); | ||
} else { | ||
console.log(...log.log); | ||
} | ||
}).on("disconnect", () => { | ||
@@ -631,0 +635,0 @@ console.error(`Logs WebSocket Disconnected`); |
@@ -11,3 +11,3 @@ { | ||
}, | ||
"version": "0.0.24-next.0", | ||
"version": "0.0.24-next.1", | ||
"scripts": { | ||
@@ -14,0 +14,0 @@ "type-check": "tsc -p tsconfig.json --noEmit", |
79923
1707