summaryrefslogtreecommitdiff
path: root/src/manager/common/exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager/common/exception.cpp')
-rw-r--r--src/manager/common/exception.cpp26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/manager/common/exception.cpp b/src/manager/common/exception.cpp
index d3b8c9b5..8a9edf5c 100644
--- a/src/manager/common/exception.cpp
+++ b/src/manager/common/exception.cpp
@@ -26,23 +26,25 @@ namespace CKM {
namespace Exc {
PrintError::PrintError(
- const std::string &path,
- const std::string &function,
- int line,
- int error,
- const std::string &message)
+ const std::string &path,
+ const std::string &function,
+ int line,
+ int error,
+ const std::string &message)
{
- LogErrorPosition(message << " (Error: " << error << ")", path.c_str(), line, function.c_str());
+ LogErrorPosition(message << " (Error: " << error << ")", path.c_str(), line,
+ function.c_str());
}
PrintDebug::PrintDebug(
- const std::string &path,
- const std::string &function,
- int line,
- int error,
- const std::string &message)
+ const std::string &path,
+ const std::string &function,
+ int line,
+ int error,
+ const std::string &message)
{
- LogDebugPosition(message << " (Error: " << error << ")", path.c_str(), line, function.c_str());
+ LogDebugPosition(message << " (Error: " << error << ")", path.c_str(), line,
+ function.c_str());
}
} // namespace Exc