Skip to content

Commit

Permalink
Make bot client added message stringify on one line
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMacocian committed Aug 26, 2024
1 parent 1337e7f commit 182f92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GuildWarsPartySearch.NodeJSServer/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function add_bot_client(request) {
request.is_bot_client = 1;
request.client_id = client_id;
bot_clients[client_id] = request;
console.log(`Bot client added: ${JSON.stringify(request.headers, null, 1)}`)
console.log(`Bot client added: ${JSON.stringify(request.headers, null, 0)}`)
}

/**
Expand Down

0 comments on commit 182f92d

Please sign in to comment.