|
@@ -473,6 +473,13 @@ func (Config *IRCConfig) ReaderRoutine() {
|
|
|
msg.Cmd = results[0]
|
|
|
}
|
|
|
|
|
|
+ if !Config.Debug_Output {
|
|
|
+ if msg.Cmd == "ERROR" || msg.Cmd[0] == '4' || msg.Cmd[0] == '5' {
|
|
|
+ // Always log errors.
|
|
|
+ log.Println("<<", line)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// Answer PING/PONG immediately.
|
|
|
if results[0] == "PING" {
|
|
|
Config.PriorityWrite("PONG " + results[1])
|