diff --git a/box_context.go b/box_context.go index 36a6a2161551b7511c04d5f2b01c114d40dbeb57..35282ebeb4a21fd2323b64a92cc0a40c6dc2a79f 100644 --- a/box_context.go +++ b/box_context.go @@ -83,6 +83,10 @@ func (c *ServiceBoxContext) GetProxyWithNickname(uuid uint64, name string) idlrp } } +func (c *ServiceBoxContext) Debug(format string, i ...interface{}) { + c.box.logger.Debug(format, i...) +} + func (c *ServiceBoxContext) Info(format string, i ...interface{}) { c.box.logger.Info(format, i...) }