You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func debug(format string, v ...interface{}) {
if !Debug {
return
}
log.Printf(format, v...)
}
And it's actually being heavily used. I suggest that we improve logging here and switch to more common solutions which support log levels like it's done in the other parts (i.e. DMSG)
The text was updated successfully, but these errors were encountered:
Notices this piece of code in
therealssh
:And it's actually being heavily used. I suggest that we improve logging here and switch to more common solutions which support log levels like it's done in the other parts (i.e. DMSG)
The text was updated successfully, but these errors were encountered: