From be05748ec365df0d2f56a02bee4ba265c9261ada Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Sat, 10 Jan 2026 17:56:57 -0500 Subject: [PATCH] Update logging.md --- docs/developer/logging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/developer/logging.md b/docs/developer/logging.md index 4c47da5c..edeb7d3d 100644 --- a/docs/developer/logging.md +++ b/docs/developer/logging.md @@ -123,7 +123,7 @@ Logging aliases are maintained in **eqemu_logsys_log_aliases.h** For development purposes, you may want to add a new category, this is very simple to do -An example of a category being added can be seen at this commit: [How to add a category](https://github.com/EQEmu/Server/commit/a46c0ee7e2dcf094c4b0e4d9cb91525443c19c5b). +An example of a category being added can be seen at this commit: [How to add a category](https://github.com/EQEmu/EQEmu/commit/a46c0ee7e2dcf094c4b0e4d9cb91525443c19c5b). Once you've added the code to the mentioned sections, the next time world boots world will inject the logging categories if they don't exist in the table. @@ -131,7 +131,7 @@ Once you've added the code to the mentioned sections, the next time world boots In **eqemu_logsys.cpp** you can set default values for the log system initialization routine -[https://github.com/EQEmu/Server/blob/master/common/eqemu_logsys.cpp](https://github.com/EQEmu/Server/blob/master/common/eqemu_logsys.cpp) +[https://github.com/EQEmu/EQEmu/blob/master/common/eqemu_logsys.cpp](https://github.com/EQEmu/EQEmu/blob/master/common/eqemu_logsys.cpp) === "eqemu_logsys.cpp" @@ -186,4 +186,4 @@ Using said alias then becomes very simple ```cpp LogSaylink("Loaded [{}] saylinks into cache", saylinks.size()); - ``` \ No newline at end of file + ```