# AyCode.Core.Server Server-side extension of AyCode.Core. Provides server-specific implementations that build on the shared core library. ## Folder Structure | Folder | Purpose | |---|---| | `Loggers/` | Server-side global logger singleton | ## Key Files ### Loggers/ - **`GlobalLogger.cs`** — Static singleton facade for server-side logging. Wraps `AcGlobalLoggerBase` (sealed, derives from `AcLoggerBase`). Provides static methods (`Detail`, `Debug`, `Info`, `Warning`, `Suggest`, `Error`, `Write`) with `[CallerMemberName]` support. Default category: `"GLOBAL_LOGGER"`. ## Dependencies | Dependency | Purpose | |---|---| | `AyCode.Core` | Core library (loggers, enums, serializers) | | `MessagePack` | MessagePack serialization | | `Newtonsoft.Json` | JSON serialization | | `Microsoft.Extensions.Logging.Abstractions` | Logging abstractions | --- > **LLM Maintenance:** If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.