diff --git a/src/util/locking/WrappedExpiringLock.ts b/src/util/locking/WrappedExpiringLock.ts index ef2f511af..d0df5035a 100644 --- a/src/util/locking/WrappedExpiringLock.ts +++ b/src/util/locking/WrappedExpiringLock.ts @@ -45,7 +45,7 @@ export class WrappedExpiringLock extends EventEmitter implements ExpiringLock { } private async expire(): Promise { - this.logger.verbose(`Lock expired after ${this.expiration}ms`); + this.logger.warn(`Lock expired after ${this.expiration}ms`); this.emit('expired'); try { await this.innerLock.release();