From e0dcf177328ee37f7f47dacaa83a37135403efc0 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Sat, 9 Aug 2025 10:45:25 -0400 Subject: [PATCH] Update http-transport, logging level to TRACE for debugging. --- finnow-api/dub.selections.json | 2 +- finnow-api/source/app.d | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/finnow-api/dub.selections.json b/finnow-api/dub.selections.json index 99f3b3c..2f75f0a 100644 --- a/finnow-api/dub.selections.json +++ b/finnow-api/dub.selections.json @@ -8,7 +8,7 @@ "handy-http-handlers": "1.1.0", "handy-http-primitives": "1.8.1", "handy-http-starter": "1.5.0", - "handy-http-transport": "1.7.0", + "handy-http-transport": "1.7.1", "handy-http-websockets": "1.2.0", "jwt4d": "0.0.2", "mir-algorithm": "3.22.4", diff --git a/finnow-api/source/app.d b/finnow-api/source/app.d index 75a27d7..e478ec4 100644 --- a/finnow-api/source/app.d +++ b/finnow-api/source/app.d @@ -11,7 +11,7 @@ struct AppConfig { void main() { const AppConfig config = readConfig(); - auto provider = new DefaultProvider(Levels.DEBUG); + auto provider = new DefaultProvider(Levels.TRACE); configureLoggingProvider(provider); infoF!"Loaded app config: port = %d, webOrigin = %s"(config.port, config.webOrigin);