diff options
| author | 2018-08-07 16:45:03 +0100 | |
|---|---|---|
| committer | 2018-08-07 16:45:03 +0100 | |
| commit | c51d80d9d4f2a0a38686e7dd358de0b554746331 (patch) | |
| tree | b45e166994d24c5d39742c2f8247a0d38439ea0f /src/modules/m_spanningtree/addline.cpp | |
| parent | Make the FJOIN timestamp message easier for users to understand. (diff) | |
Remove the 'debug' snotice character.
Diffstat (limited to 'src/modules/m_spanningtree/addline.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/addline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/addline.cpp b/src/modules/m_spanningtree/addline.cpp index cd11b8d58..00ef5b8d1 100644 --- a/src/modules/m_spanningtree/addline.cpp +++ b/src/modules/m_spanningtree/addline.cpp @@ -31,7 +31,7 @@ CmdResult CommandAddLine::Handle(User* usr, Params& params) if (!xlf) { - ServerInstance->SNO->WriteToSnoMask('d',"%s sent me an unknown ADDLINE type (%s).",setter.c_str(),params[0].c_str()); + ServerInstance->SNO->WriteToSnoMask('x',"%s sent me an unknown ADDLINE type (%s).",setter.c_str(),params[0].c_str()); return CMD_FAILURE; } @@ -42,7 +42,7 @@ CmdResult CommandAddLine::Handle(User* usr, Params& params) } catch (ModuleException &e) { - ServerInstance->SNO->WriteToSnoMask('d',"Unable to ADDLINE type %s from %s: %s", params[0].c_str(), setter.c_str(), e.GetReason().c_str()); + ServerInstance->SNO->WriteToSnoMask('x',"Unable to ADDLINE type %s from %s: %s", params[0].c_str(), setter.c_str(), e.GetReason().c_str()); return CMD_FAILURE; } xl->SetCreateTime(ConvToInt(params[3])); |
