summaryrefslogtreecommitdiff
path: root/src/dpl/core/src/exception.cpp
diff options
context:
space:
mode:
authorsangwan.kwon <sangwan.kwon@samsung.com>2016-05-30 14:27:13 +0900
committersangwan.kwon <sangwan.kwon@samsung.com>2016-05-30 14:35:25 +0900
commitb8ffd7662428b4baff92a0c8271e84c2b55ce47b (patch)
treecdeecf4ba84a2fb7c852fa6c538a304f2a458196 /src/dpl/core/src/exception.cpp
parent30177b747ab42a7cedc5228803e057d05583b1a6 (diff)
downloadcert-checker-b8ffd7662428b4baff92a0c8271e84c2b55ce47b.tar.gz
cert-checker-b8ffd7662428b4baff92a0c8271e84c2b55ce47b.tar.bz2
cert-checker-b8ffd7662428b4baff92a0c8271e84c2b55ce47b.zip
Apply tizen coding rule
* It depends on cpp rule checker(version 160520) Change-Id: Ica308e1296be4f3567725fdb004f3bae8a456a0c
Diffstat (limited to 'src/dpl/core/src/exception.cpp')
-rw-r--r--src/dpl/core/src/exception.cpp34
1 files changed, 16 insertions, 18 deletions
diff --git a/src/dpl/core/src/exception.cpp b/src/dpl/core/src/exception.cpp
index bee161b..66024fc 100644
--- a/src/dpl/core/src/exception.cpp
+++ b/src/dpl/core/src/exception.cpp
@@ -26,32 +26,30 @@
#include "common/log.h"
namespace CCHECKER {
-Exception* Exception::m_lastException = NULL;
+Exception *Exception::m_lastException = NULL;
unsigned int Exception::m_exceptionCount = 0;
void (*Exception::m_terminateHandler)() = NULL;
void LogUnhandledException(const std::string &str)
{
- // Logging to console
- printf("%s\n", str.c_str());
-
- // Logging to dlog
- LogDebug(str);
+ // Logging to console
+ printf("%s\n", str.c_str());
+ // Logging to dlog
+ LogDebug(str);
}
void LogUnhandledException(const std::string &str,
- const char *filename,
- int line,
- const char *function)
+ const char *filename,
+ int line,
+ const char *function)
{
- // Logging to console
- std::ostringstream msg;
- msg << "\033[1;5;31m\n=== [" << filename << ":" << line << "] " <<
- function << " ===\033[m";
- msg << str;
- printf("%s\n", msg.str().c_str());
-
- // Logging to dlog
- LogError(str.c_str() << filename << line << function);
+ // Logging to console
+ std::ostringstream msg;
+ msg << "\033[1;5;31m\n=== [" << filename << ":" << line << "] " <<
+ function << " ===\033[m";
+ msg << str;
+ printf("%s\n", msg.str().c_str());
+ // Logging to dlog
+ LogError(str.c_str() << filename << line << function);
}
} // namespace CCHECKER