51 lines
1.1 KiB
C++
51 lines
1.1 KiB
C++
|
/*
|
||
|
* Copyright 2009, Pier Luigi Fiorini. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Pier Luigi Fiorini, pierluigi.fiorini@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <FindDirectory.h>
|
||
|
#include <Path.h>
|
||
|
#include <StorageDefs.h>
|
||
|
|
||
|
#include "Logger.h"
|
||
|
|
||
|
|
||
|
void
|
||
|
logmsg(const char* message, ...)
|
||
|
{
|
||
|
va_list varg;
|
||
|
char buffer[2048];
|
||
|
|
||
|
va_start(varg, message);
|
||
|
vsprintf(buffer, message, varg);
|
||
|
|
||
|
char timestr[64];
|
||
|
char today[11];
|
||
|
time_t now = time(NULL);
|
||
|
strftime(timestr, sizeof(timestr), "%Y-%m-%d %H:%M", localtime(&now));
|
||
|
timestr[63] = '\0';
|
||
|
strftime(today, sizeof(today), "%Y-%m-%d", localtime(&now));
|
||
|
today[10] = '\0';
|
||
|
|
||
|
char filename[B_PATH_NAME_LENGTH];
|
||
|
snprintf(filename, B_PATH_NAME_LENGTH, "jabber-%s.log", today);
|
||
|
|
||
|
BPath tempFile;
|
||
|
if (find_directory(B_COMMON_TEMP_DIRECTORY, &tempFile) != B_OK)
|
||
|
debugger("Could not find common temporary folder!");
|
||
|
tempFile.Append(filename);
|
||
|
|
||
|
FILE* file = fopen(tempFile.Path(), "a+");
|
||
|
if (file) {
|
||
|
fprintf(file, "%s %s\n", timestr, buffer);
|
||
|
fclose(file);
|
||
|
}
|
||
|
}
|