Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/plugins/logs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default createPlugin(
stdio: "pipe",
},
);
pipeToLogOutputChannel(logsProcess, outputChannel, "");
pipeToLogOutputChannel(logsProcess, outputChannel, "[localstack.logs]: ");
};

const stopLogging = () => {
Expand Down
9 changes: 3 additions & 6 deletions src/utils/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,9 @@ export function createTelemetry(

postEvent(extensionVersion, telemetryEvent).catch(() => {});

if (process.env.NODE_ENV === "development") {
// only log in output channel for development mode
outputChannel.info(
`Telemetry event tracked: ${JSON.stringify(telemetryEvent)}`,
);
}
outputChannel.debug(
Comment thread
skyrpex marked this conversation as resolved.
Outdated
`[telemetry.event]: ${JSON.stringify(telemetryEvent)}`,
);
},
};
}
Loading