switched to use own function for logging

This commit is contained in:
2024-11-23 20:13:07 +09:00
parent 37c600d0f6
commit 493309a4e9
4 changed files with 48 additions and 13 deletions

View File

@ -903,6 +903,6 @@ func (c *Client) WaitForTermination() {
c.wg.Wait()
}
func (c *Client) WriteLog (id string, level LogLevel, fmt string, args ...interface{}) {
c.log.Write(id, level, fmt, args...)
func (c *Client) WriteLog (id string, level LogLevel, fmtstr string, args ...interface{}) {
c.log.Write(id, level, fmtstr, args...)
}