summaryrefslogtreecommitdiff
path: root/shared/global_func.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/global_func.cpp')
-rw-r--r--shared/global_func.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/shared/global_func.cpp b/shared/global_func.cpp
index fe741b22..07a68187 100644
--- a/shared/global_func.cpp
+++ b/shared/global_func.cpp
@@ -17,7 +17,8 @@ size_t common::getDigitCount(size_t number) //count number of digits
}
//############################################################################
-DebugLog::DebugLog() :
+DebugLog::DebugLog(const wxString& filePrefix) :
+ prefix(filePrefix),
lineCount(0),
logFile(NULL)
{
@@ -37,7 +38,7 @@ wxString DebugLog::assembleFileName()
{
wxString tmp = wxDateTime::Now().FormatISOTime();
tmp.Replace(wxT(":"), wxEmptyString);
- return wxString(wxT("DEBUG_")) + wxDateTime::Now().FormatISODate() + wxChar('_') + tmp + wxT(".log");
+ return prefix + wxString(wxT("DEBUG_")) + wxDateTime::Now().FormatISODate() + wxChar('_') + tmp + wxT(".log");
}
bgstack15