In #11897 we've added getPreDefinedConfiguration() to src/client/logging/logger.ts. The function deals with global state so it belongs in _global.ts. However, we had ran into trouble when we moved it to _global.ts. (Adding import '../client/logging/_global'; to src/test/testLogger.ts, to force creating the global logger, caused the aliases in src/client/logging/index.ts to all be undefined when imported anywhere else under src/client.)
We need to figure out how to get it to work.
In #11897 we've added
getPreDefinedConfiguration()to src/client/logging/logger.ts. The function deals with global state so it belongs in _global.ts. However, we had ran into trouble when we moved it to _global.ts. (Addingimport '../client/logging/_global';to src/test/testLogger.ts, to force creating the global logger, caused the aliases in src/client/logging/index.ts to all beundefinedwhen imported anywhere else under src/client.)We need to figure out how to get it to work.