Change logging to DEBUG
Build and Deploy Web App / build-and-deploy (push) Successful in 18s Details
Build and Deploy API / build-and-deploy (push) Successful in 1m15s Details

This commit is contained in:
Andrew Lalis 2025-08-09 10:20:54 -04:00
parent 42be9d2062
commit eae54f9343
2 changed files with 4 additions and 1 deletions

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.INFO); auto provider = new DefaultProvider(Levels.DEBUG);
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);

View File

@ -78,6 +78,9 @@ router.beforeEach((to, _, next) => {
} else { } else {
document.title = 'Finnow' document.title = 'Finnow'
} }
if (import.meta.env.DEV) {
document.title = '[DEV]' + document.title
}
next() next()
}) })