Files
WinDurango/dlls/appmodel/pch.cpp
Serenity 2ae935a199 Refactor logging system and remove deprecated methods
This commit introduces a new `Logger` class to replace all instances of `printf` and `DEBUG_LOG` throughout the codebase. Key changes include:

- Replaced logging calls in `Audio2.cpp` and `appmodel.cpp` with structured log levels (`LOG_WARNING`, `LOG_DEBUG`, etc.).
- Removed `DebugLogger.h` and `Logger.cpp`, consolidating logging functionality into `Logger.h`.
- Added `Config.h` for configuration management using TOML files.
- Updated project files to reflect the removal of old logging files and inclusion of the new logging system.

These changes enhance logging capabilities, improve code maintainability, and standardize logging practices across the codebase.
2025-07-01 21:25:24 -04:00

7 lines
216 B
C++

// pch.cpp: source file corresponding to the pre-compiled header
#include "pch.h"
#include "../common/Logger.h"
// When you are using pre-compiled headers, this source file is necessary for compilation to succeed.