cleaned up logs for apps

This commit is contained in:
Boki 2025-06-20 08:02:58 -04:00
parent 4726a85cf3
commit 43f4429998
7 changed files with 28 additions and 28 deletions

View file

@ -75,7 +75,7 @@ async function initializeServices() {
try {
// Initialize MongoDB client
logger.info('Connecting to MongoDB...');
logger.debug('Connecting to MongoDB...');
const mongoConfig = databaseConfig.mongodb;
mongoClient = await createAndConnectMongoDBClient({
uri: mongoConfig.uri,
@ -92,7 +92,7 @@ async function initializeServices() {
logger.info('MongoDB connected');
// Initialize PostgreSQL client
logger.info('Connecting to PostgreSQL...');
logger.debug('Connecting to PostgreSQL...');
const pgConfig = databaseConfig.postgres;
postgresClient = await createAndConnectPostgreSQLClient({
host: pgConfig.host,