diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-12-18 16:20:40 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-12-18 16:20:40 +0100 |
commit | 1e8389b27ff99ad9f48c890486ebef936acafc41 (patch) | |
tree | 44543c79a89509604d2fa7b910c278476b9a0eba /src/commands/cmd_hostname_lookup.cpp | |
parent | 0680b529874b701b20650586d8466a155d9ba0d5 (diff) |
Clean up CoreException
- Remove default constructor
- Replace virtual functions returning C strings with functions returning const std::string refs
Diffstat (limited to 'src/commands/cmd_hostname_lookup.cpp')
-rw-r--r-- | src/commands/cmd_hostname_lookup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/cmd_hostname_lookup.cpp b/src/commands/cmd_hostname_lookup.cpp index 3287f3662..c26d3b3d3 100644 --- a/src/commands/cmd_hostname_lookup.cpp +++ b/src/commands/cmd_hostname_lookup.cpp @@ -92,7 +92,7 @@ class UserResolver : public DNS::Request catch (DNS::Exception& e) { delete res_forward; - ServerInstance->Logs->Log("RESOLVER", LOG_DEBUG, "Error in resolver: %s",e.GetReason()); + ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Error in resolver: " + e.GetReason()); bound_user->WriteNotice("*** There was an internal error resolving your host, using your IP address (" + bound_user->GetIPString() + ") instead."); dl->set(bound_user, 0); @@ -214,7 +214,7 @@ class ModuleHostnameLookup : public Module { this->dnsLookup.set(user, 0); delete res_reverse; - ServerInstance->Logs->Log("USERS", LOG_DEBUG, "Error in resolver: %s", e.GetReason()); + ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Error in resolver: " + e.GetReason()); ServerInstance->stats->statsDnsBad++; } } |