🎨 Improve code formatting and spacing for readability in OAuth proxy server

This commit is contained in:
2026-01-29 13:20:05 +00:00
parent c82e9ea5ec
commit 2f0f0e840f

View File

@@ -162,12 +162,16 @@ const server = app.listen(config.port, () => {
nodeEnv: config.nodeEnv,
challongeConfigured: config.challonge.configured
});
if (!config.challonge.configured) {
logger.warn('⚠️ Challonge OAuth not configured - OAuth endpoints disabled');
logger.warn(' Set CHALLONGE_CLIENT_ID and CHALLONGE_CLIENT_SECRET to enable');
logger.warn(
'⚠️ Challonge OAuth not configured - OAuth endpoints disabled'
);
logger.warn(
' Set CHALLONGE_CLIENT_ID and CHALLONGE_CLIENT_SECRET to enable'
);
}
logger.info('✅ Ready to handle requests');
});