Skip to content

Commit a73d88e

Browse files
Fixed debug message
Fix debug message from MSync.MBSync.msg, which would not show debug data accordingly
1 parent 40ef96b commit a73d88e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/msync/server/modules/sv_mbsync.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ MSync.modules[info.ModuleIdentifier].net = function()
830830
]]
831831
util.AddNetworkString("msync."..info.ModuleIdentifier..".sendMessage")
832832
MSync.modules[info.ModuleIdentifier].msg = function(ply, content, msgType)
833-
MSync.log(MSYNC_DBG_DEBUG, "[MBSync] Exec: MBSync.msg Param.: $ply \"$content\" $msgType")
833+
MSync.log(MSYNC_DBG_DEBUG, MSync.formatString("[MBSync] Exec: MBSync.msg Param.: $ply \"$content\" $msgType",{['ply'] = ply, ['content'] = content, ['msgType'] = msgType}))
834834
if type(ply) == "string" and not (ply == "STEAM_0:0:0") then
835835
ply = player.GetBySteamID( ply )
836836
end

0 commit comments

Comments
 (0)