chore(server): add per-request perf logs for base query cache diagnostics

This commit is contained in:
Philipinho
2026-04-19 22:44:39 +01:00
parent 02c3bdf028
commit 7e07d77510
4 changed files with 136 additions and 3 deletions
@@ -335,4 +335,12 @@ export class EnvironmentService {
10,
);
}
getBaseQueryCacheDebug(): boolean {
return (
this.configService
.get<string>('BASE_QUERY_CACHE_DEBUG', 'false')
.toLowerCase() === 'true'
);
}
}