Skip to content

Commit 03f9332

Browse files
amabluea-maurice
authored andcommitted
Set the per-app logger to Verbose until we add getters and setters to
individual app's log level. This does not affect the system logger or the database logger. PiperOrigin-RevId: 267410571
1 parent 9cb83e7 commit 03f9332

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/app_common.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ SystemLogger g_system_logger; // NOLINT
152152

153153
// Private cross platform data associated with an app.
154154
struct AppData {
155-
AppData() : logger(&g_system_logger) {}
155+
// TODO(b/140528778): Remove kLogLevelVerbose here and add [GS]etLogLevel
156+
// member functions to app.
157+
AppData() : logger(&g_system_logger, kLogLevelVerbose) {}
156158

157159
// App associated with this data.
158160
App* app;

0 commit comments

Comments
 (0)