summaryrefslogtreecommitdiff
path: root/src/logger.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-31 14:32:24 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-31 14:32:24 +0300
commitca49316628e8e3e6161d9a9649893664ef36c925 (patch)
tree77ffbc587bdf78c81b18b0f671e1119c487860f2 /src/logger.cpp
parent544de86739a85792be7e6883968b2af8590d0711 (diff)
downloadplus-ca49316628e8e3e6161d9a9649893664ef36c925.tar.gz
plus-ca49316628e8e3e6161d9a9649893664ef36c925.tar.bz2
plus-ca49316628e8e3e6161d9a9649893664ef36c925.tar.xz
plus-ca49316628e8e3e6161d9a9649893664ef36c925.zip
Improve packets logging speed.
Diffstat (limited to 'src/logger.cpp')
-rw-r--r--src/logger.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/logger.cpp b/src/logger.cpp
index d53ebc99b..024de4660 100644
--- a/src/logger.cpp
+++ b/src/logger.cpp
@@ -119,6 +119,37 @@ void Logger::dlog(const std::string &str)
if (mLogToStandardOut)
std::cout << timeStr.str() << str << std::endl;
}
+
+void Logger::dlog2(const std::string &str, const char* const comment)
+{
+ if (!mDebugLog)
+ return;
+
+ // Get the current system time
+ timeval tv;
+ gettimeofday(&tv, nullptr);
+
+ // Print the log entry
+ std::stringstream timeStr;
+ DATESTREAM
+ DLOG_ANDROID(str.c_str())
+
+ if (mLogFile.is_open())
+ {
+ if (comment)
+ mLogFile << timeStr.str() << str << ": " << comment << std::endl;
+ else
+ mLogFile << timeStr.str() << str << std::endl;
+ }
+
+ if (mLogToStandardOut)
+ {
+ if (comment)
+ std::cout << timeStr.str() << str << ": " << comment << std::endl;
+ else
+ std::cout << timeStr.str() << str << std::endl;
+ }
+}
#endif
void Logger::log1(const char *const buf)