Replaced Markdown links with plain code-style paths in all README.md files for consistency. Updated references to logging, SignalR, and dynamic method dispatch documentation. Clarified some documentation paths and improved consistency in context/architecture sections. No code changes—documentation only. |
||
|---|---|---|
| .. | ||
| GlobalLogger.cs | ||
| README.md | ||
README.md
Loggers
Server-side singleton logger for static access across the application.
For full logging architecture see
docs/LOGGING.md. For core logger and writer abstractions seeAyCode.Core/Loggers/README.md.
Key Files
GlobalLogger.cs— Singleton static wrapper around an internalAcGlobalLoggerBase(sealedAcLoggerBasesubclass). Provides static methods for all log levels (Detail,Debug,Info,Warning,Suggest,Error,Write). Default category:"GLOBAL_LOGGER". Reads config fromappsettings.jsonlike anyAcLoggerBase. ExposesGetWritersandWriter<T>()for accessing specific writer instances.