reconsider logging levels

This commit is contained in:
rubikscraft
2022-04-18 16:43:27 +02:00
parent 5ca8516560
commit 4612a9ea6f
29 changed files with 124 additions and 359 deletions

View File

@@ -48,7 +48,7 @@ export class UsersModule implements OnModuleInit {
password: string,
roles: string[],
) {
this.logger.debug(`Ensuring user "${username}" exists`);
this.logger.verbose(`Ensuring user "${username}" exists`);
const exists = await this.usersService.exists(username);
if (exists) return;