Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak debug logs in SocketModeClient #1624

Merged
merged 1 commit into from May 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/socket-mode/src/SocketModeClient.ts
Expand Up @@ -742,7 +742,9 @@ export class SocketModeClient extends EventEmitter {

// Define Ack
const ack = async (response: Record<string, unknown>): Promise<void> => {
this.logger.debug(`Calling ack() - type: ${event.type}, envelope_id: ${event.envelope_id}, data: ${response}`);
if (this.logger.getLevel() === LogLevel.DEBUG) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added this if statement to avoid JSON.stringify when the log level is not DEBUG

this.logger.debug(`Calling ack() - type: ${event.type}, envelope_id: ${event.envelope_id}, data: ${JSON.stringify(response)}`);
}
await this.send(event.envelope_id, response);
};

Expand Down