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

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