Update http-transport, logging level to TRACE for debugging.
Build and Deploy API / build-and-deploy (push) Successful in 1m12s Details

This commit is contained in:
Andrew Lalis 2025-08-09 10:45:25 -04:00
parent eae54f9343
commit e0dcf17732
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
"handy-http-handlers": "1.1.0", "handy-http-handlers": "1.1.0",
"handy-http-primitives": "1.8.1", "handy-http-primitives": "1.8.1",
"handy-http-starter": "1.5.0", "handy-http-starter": "1.5.0",
"handy-http-transport": "1.7.0", "handy-http-transport": "1.7.1",
"handy-http-websockets": "1.2.0", "handy-http-websockets": "1.2.0",
"jwt4d": "0.0.2", "jwt4d": "0.0.2",
"mir-algorithm": "3.22.4", "mir-algorithm": "3.22.4",

View File

@ -11,7 +11,7 @@ struct AppConfig {
void main() { void main() {
const AppConfig config = readConfig(); const AppConfig config = readConfig();
auto provider = new DefaultProvider(Levels.DEBUG); auto provider = new DefaultProvider(Levels.TRACE);
configureLoggingProvider(provider); configureLoggingProvider(provider);
infoF!"Loaded app config: port = %d, webOrigin = %s"(config.port, config.webOrigin); infoF!"Loaded app config: port = %d, webOrigin = %s"(config.port, config.webOrigin);