Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
drwatsno committed Sep 30, 2021
1 parent 141c242 commit acd94be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/managers/BaseManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export abstract class BaseManager {
isKeySuccessfullyLocked = await this.storage.lockKey(context.key);
} catch (keyLockError: unknown) {
this.logger.error(
`Error occurred while trying to lock key "${context.key}". Reason: ${(keyLockError as Error).message}. Running executor`
`Error occurred while trying to lock key "${context.key}". Reason: ${
(keyLockError as Error).message
}. Running executor`
);

return runExecutor(context.executor);
Expand Down

0 comments on commit acd94be

Please sign in to comment.