diff --git a/src/app/units/FirebaseUnit.ts b/src/app/units/FirebaseUnit.ts index d0b9966..31b58ac 100644 --- a/src/app/units/FirebaseUnit.ts +++ b/src/app/units/FirebaseUnit.ts @@ -58,12 +58,12 @@ export class FirebaseUnit extends Unit { return Promise.resolve() } - this.logging.debug(`Unable to acquire lock: ${name}. Trying again soon...`) + this.logging.debug(`Unable to acquire lock: ${name} - ${description}. Trying again soon...`) await this.sleep(500) return this.trylock(name, description) }) .catch(async reason => { - this.logging.debug(`Unable to acquire lock: ${name}. Trying again soon...`) + this.logging.debug(`Unable to acquire lock: ${name} - ${description}. Trying again soon...`) await this.sleep(500) return this.trylock(name, description) })