Skip to content
Dreae edited this page Jul 7, 2020 · 1 revision

SourceMod logs not showing up

By default SourceMod does not send log messages to remote addresses. To enable this you need to edit addons/sourcemod/configs/core.cfg to change the value of LogMode to game.

         /**
         * This option determines how SourceMod logging should be handled.
         *
         * "daily"      - New log file is created for each day (default)
         * "map"        - New log file is created for each map change
         * "game"       - Use game's log files
         */
        "LogMode"               "game"

This will cause SourceMod to send log messages to loggregate, unfortunately it means SourceMod will no longer use it's own log files, and will instead use the default game log files.

Clone this wiki locally