2010-06-01 10:17:27 +02:00
|
|
|
// Copyright (c) 2010, Amar Takhar <verm@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
/// @file log.cpp
|
|
|
|
/// @brief Unix logging
|
|
|
|
/// @ingroup libaegisub
|
|
|
|
|
2011-07-16 08:42:55 +02:00
|
|
|
#include "config.h"
|
2010-06-01 10:17:27 +02:00
|
|
|
|
2012-05-26 19:00:16 +02:00
|
|
|
#ifndef LAGI_PRE
|
|
|
|
#include <cstdio>
|
|
|
|
#include <ctime>
|
|
|
|
#include <cstring>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2010-06-01 10:17:27 +02:00
|
|
|
|
|
|
|
#include "libaegisub/log.h"
|
|
|
|
#include "libaegisub/util.h"
|
|
|
|
|
|
|
|
namespace agi {
|
|
|
|
namespace log {
|
|
|
|
|
|
|
|
void EmitSTDOUT::log(SinkMessage *sm) {
|
|
|
|
tm tmtime;
|
|
|
|
localtime_r(&sm->tv.tv_sec, &tmtime);
|
|
|
|
|
2010-07-17 19:47:59 +02:00
|
|
|
printf("%c %02d:%02d:%02d %-6ld <%-25s> [%s:%s:%d] %.*s\n",
|
2010-06-01 10:17:27 +02:00
|
|
|
Severity_ID[sm->severity],
|
|
|
|
tmtime.tm_hour,
|
|
|
|
tmtime.tm_min,
|
|
|
|
tmtime.tm_sec,
|
2012-02-23 20:28:00 +01:00
|
|
|
(long)sm->tv.tv_usec,
|
2010-06-01 10:17:27 +02:00
|
|
|
sm->section,
|
|
|
|
sm->file,
|
|
|
|
sm->func,
|
|
|
|
sm->line,
|
2011-12-22 22:22:58 +01:00
|
|
|
(int)sm->len,
|
2010-06-24 03:24:09 +02:00
|
|
|
sm->message);
|
2012-05-15 16:06:18 +02:00
|
|
|
if (!isatty(fileno(stdout)))
|
|
|
|
fflush(stdout);
|
2010-06-01 10:17:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace log
|
|
|
|
} // namespace agi
|