Skip to content

Commit

Permalink
fix(logs): only print SSE errors as debug when verbose mode is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
hsablonniere committed Feb 7, 2024
1 parent fada067 commit 3ea21c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/log-v4.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function displayLogs (params) {
Logger.debug(`stream opened! ${JSON.stringify({ appId, filter, deploymentId })}`);
})
.on('error', (event) => {
Logger.error(`an error occured: ${event.detail}`);
Logger.debug(`an error occured: ${event.detail}`);
})
.onLog((log) => {
Logger.println(formatLogLine(log));
Expand Down

0 comments on commit 3ea21c6

Please sign in to comment.