2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[3399] Parameters are now printed during exception

This commit is contained in:
Tomek Mrugalski
2014-06-02 19:18:29 +02:00
parent fe739cf853
commit 6e4dd3ae58

View File

@@ -97,7 +97,8 @@ ControlledDhcpv4Srv::processCommand(const string& command,
return (answer);
} catch (const Exception& ex) {
return (isc::config::createAnswer(1, "Error while processing command '"
+ command + "':" + ex.what()));
+ command + "':" + ex.what() +
", params: '" + args->str() + "'"));
}
}