Files
alfresco-community-repo/source/cpp/CAlfrescoApp/source/util/Debug.cpp
Paul Holmes-Higgin cefda8c965 Updated header to LGPL
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2010-03-01 22:48:39 +00:00

86 lines
2.0 KiB
C++
Executable File

/*
* Copyright (C) 2005-2010 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
#include <time.h>
#include "util\Debug.h"
using namespace std;
using namespace Alfresco;
// Global debug output stream
ofstream Debug::_debugOut;
/**
* Open the debug output file
*
* @param logName const char*
* @param append bool
*/
void Debug::openLog(const char *logName, bool append) {
// Check if the log is already open
if ( Debug::hasOutputStream())
Debug::closeLog();
// Open the debug log file
unsigned int openMode = append ? ios::app : ios::out;
_debugOut.open( logName, openMode);
}
/**
* Close the debug output file
*/
void Debug::closeLog( void) {
// Close the debug log
if ( Debug::hasOutputStream()) {
// Close the debug log file
_debugOut.close();
}
}
/**
* Output the current date/time to the debug log
*/
void Debug::timeStamp( void) {
if ( Debug::hasOutputStream()) {
// Get the time in seconds and convert to a structure
char timeBuf[32];
__time32_t timeNow;
struct tm timeTm;
_time32( &timeNow);
_localtime32_s( &timeTm, &timeNow);
sprintf_s( timeBuf, sizeof( timeBuf), "%02d/%02d/%04d %02d:%02d:%02d ",
timeTm.tm_mday, timeTm.tm_mon, timeTm.tm_year + 1900, timeTm.tm_hour, timeTm.tm_min, timeTm.tm_sec);
Debug::getOutputStream() << timeBuf;
}
}