convert console.log to debug

This commit is contained in:
Girish Ramakrishnan
2025-10-07 09:35:54 +02:00
parent 46d195557b
commit 3a0febe760
2 changed files with 2 additions and 2 deletions

View File

@@ -106,7 +106,7 @@ class StorageAdapter {
const [error] = await safe(tokens.add({ clientId: payload.clientId, identifier: user.id, expires, accessToken: id, allowedIpRanges: '' }));
if (error) {
console.log('Error adding access token', error);
debug('Error adding access token', error);
throw error;
}
} else {