chore: replace standard logging with signale

This commit is contained in:
Dries Augustyns
2025-12-10 14:21:42 +01:00
parent 3225c5005b
commit 1430f31e2d
18 changed files with 85 additions and 68 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
import {SES} from '@aws-sdk/client-ses';
import signale from 'signale';
import {
AWS_SES_ACCESS_KEY_ID,
@@ -275,7 +276,7 @@ export const getSendingQuota = async (): Promise<{
sentLast24Hours: quota.SentLast24Hours ?? 0,
};
} catch (error) {
console.error('[SES] Failed to fetch sending quota:', error);
signale.error('[SES] Failed to fetch sending quota:', error);
return null;
}
};