diff --git a/public b/public index 63eadb8..3f6ae47 160000 --- a/public +++ b/public @@ -1 +1 @@ -Subproject commit 63eadb869736b9d3e16c993cd99675c0e0de638c +Subproject commit 3f6ae474769f33050525f59aed42321b93a788cc diff --git a/worldsrv/logchannel.go b/worldsrv/logchannel.go index 44f9987..322554d 100644 --- a/worldsrv/logchannel.go +++ b/worldsrv/logchannel.go @@ -3,6 +3,8 @@ package main import ( "reflect" + "mongo.games.com/goserver/core/logger" + "mongo.games.com/game/model" "mongo.games.com/game/mq" ) @@ -39,6 +41,7 @@ func (c *LogChannel) WriteLog(log interface{}) { if cname == "" { cname = "_null_" } + logger.Logger.Tracef("==> RabbitMQ(%v): %#v", cname, log) mq.Send(cname, log) }