diff options
| author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-24 01:32:38 -0400 |
|---|---|---|
| committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-08-24 01:32:38 -0400 |
| commit | 84b4ac572954c3fbf114a877f00a12020d3b31f8 (patch) | |
| tree | 4b257caf10eb6e7dfd2113671a7ebdcd845dcf3b /src/core/core.h | |
| parent | bed0c3c92a6db45b29e787016fd21542606a031a (diff) | |
logging: Fix log filter during initialization
The log filter was being ignored on initialization due to the logging instance being initialized before the config instance, so the log filter was set to its default value.
This fixes that oversight, along with using descriptive exceptions instead of abort() calls.
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/core/core.h b/src/core/core.h index 65b447a1c..f9116ebb6 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -120,12 +120,7 @@ public: * Gets the instance of the System singleton class. * @returns Reference to the instance of the System singleton class. */ - [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance() { - if (!s_instance) { - abort(); - } - return *s_instance; - } + [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance(); static void InitializeGlobalInstance(); |
