1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# --
# Kernel/System/Log/File.pm - file log backend
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: File.pm,v 1.8 2005/02/10 13:37:10 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::System::Log::File;
use strict;
use vars qw($VERSION);
$VERSION = '$Revision: 1.8 $ ';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
umask 002;
# --
sub new {
my $Type = shift;
my %Param = @_;
# allocate new hash for object
my $Self = {};
bless ($Self, $Type);
# get logfile location
$Self->{LogFile} = $Param{ConfigObject}->Get('LogModule::LogFile')
|| die 'Need LogModule::LogFile param in Config.pm';
# get log file suffix
if ($Param{ConfigObject}->Get('LogModule::LogFile::Date')) {
my ($s,$m,$h, $D,$M,$Y, $wd,$yd,$dst) = localtime(time());
$Y = $Y+1900;
$M++;
$Self->{LogFile} .= ".$Y-$M";
}
return $Self;
}
# --
sub Log {
my $Self = shift;
my %Param = @_;
# --
# open logfile
# --
if (open (LOGFILE, ">> $Self->{LogFile}")) {
print LOGFILE "[".localtime()."]";
if ($Param{Priority} =~ /debug/i) {
print LOGFILE "[Debug][$Param{Module}][$Param{Line}] $Param{Message}\n";
}
elsif ($Param{Priority} =~ /info/i) {
print LOGFILE "[Info][$Param{Module}] $Param{Message}\n";
}
elsif ($Param{Priority} =~ /notice/i) {
print LOGFILE "[Notice][$Param{Module}] $Param{Message}\n";
}
elsif ($Param{Priority} =~ /error/i) {
# --
# print error messages to LOGFILE
# --
print LOGFILE "[Error][$Param{Module}][$Param{Line}] $Param{Message}\n";
}
else {
# print error messages to STDERR
print STDERR "[Error][$Param{Module}] Priority: '$Param{Priority}' not defined! Message: $Param{Message}\n";
# and of course to logfile
print LOGFILE "[Error][$Param{Module}] Priority: '$Param{Priority}' not defined! Message: $Param{Message}\n";
}
# --
# close file handle
# --
close (LOGFILE);
return 1;
}
else {
# --
# print error screen
# --
print STDERR "\n";
print STDERR " >> Can't write $Self->{LogFile}: $! <<\n";
print STDERR "\n";
return;
}
}
# --
1;
|