mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
Move noisy log line to debug (#473)
* Move noisy log level to debug I think I meant to actually set this to debug before :/ * Create 473.bugfix
This commit is contained in:
parent
1e44e52179
commit
cbc7718808
1
changelog.d/473.bugfix
Normal file
1
changelog.d/473.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Log noisy "Got GitHub webhook event" log line at debug level.
|
@ -124,7 +124,7 @@ export class Webhooks extends EventEmitter {
|
||||
private async onGitHubPayload({id, name, payload}: EmitterWebhookEvent) {
|
||||
const action = (payload as unknown as {action: string|undefined}).action;
|
||||
const eventName = `github.${name}${action ? `.${action}` : ""}`;
|
||||
log.info(`Got GitHub webhook event ${id} ${eventName}`, payload);
|
||||
log.debug(`Got GitHub webhook event ${id} ${eventName}`, payload);
|
||||
try {
|
||||
await this.queue.push({
|
||||
eventName,
|
||||
|
Loading…
x
Reference in New Issue
Block a user