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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
|
=head1 NAME
Log::Handler::Examples - Output examples.
=head1 LOG VIA DBI
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
dbi => {
# database connection
database => 'database',
driver => 'mysql',
user => 'user',
password => 'password',
host => '127.0.0.1',
port => 3306,
debug => 1,
table => 'messages',
columns => [ qw/level ctime cdate pid hostname caller progname mtime message/ ],
values => [ qw/%level %time %date %pid %hostname %caller %progname %mtime %message/ ],
persistent => 1,
reconnect => 1,
maxlevel => 'error',
minlevel => 'emergency'
message_pattern => '%L %T %D %P %H %C %S %t %m',
}
);
$log->error('log an error');
=head1 LOG VIA EMAIL
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
email => {
host => 'mx.bar.example',
hello => 'EHLO my.domain.example',
timeout => 30,
from => 'bar@foo.example',
to => 'foo@bar.example',
subject => 'your subject',
buffer => 0,
maxlevel => 'emergency',
minlevel => 'emergency',
}
);
$log->emergency('log an emergency issue');
=head1 LOG VIA FILE
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
file => {
filename => 'file1.log',
mode => 'append',
newline => 1,
maxlevel => 7,
minlevel => 0
}
);
$log->error('log an error');
=head1 LOG VIA FORWARD
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
forward => {
forward_to => \&my_func,
message_pattern => [ qw/%L %T %P %H %C %S %t/ ],
message_layout => '%m',
maxlevel => 'info',
}
);
$log->info('log a information');
sub my_func {
my $params = shift;
print Dumper($params);
}
=head1 LOG VIA SCREEN
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
screen => {
log_to => 'STDERR',
newline => 1,
maxlevel => 'info',
}
);
$log->info('log to the screen');
=head1 LOG VIA SOCKET
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
socket => {
peeraddr => '127.0.0.1',
peerport => 44444,
newline => 1,
maxlevel => 'info',
die_on_errors => 0,
}
);
while ( 1 ) {
$log->info('test')
or warn "unable to send message: ", $log->errstr;
sleep 1;
}
=head2 SIMPLE SOCKET SERVER (TCP)
use strict;
use warnings;
use IO::Socket::INET;
use Log::Handler::Output::File;
my $sock = IO::Socket::INET->new(
LocalAddr => '127.0.0.1',
LocalPort => 44444,
Listen => 2,
) or die $!;
my $file = Log::Handler::Output::File->new(
filename => 'file.log',
mode => 'append',
fileopen => 1,
reopen => 1,
);
while ( 1 ) {
$file->log(message => "waiting for next connection\n");
while (my $request = $sock->accept) {
my $ipaddr = sprintf('%-15s', $request->peerhost);
while (my $message = <$request>) {
$file->log(message => "$ipaddr - $message");
}
}
}
=head1 DIFFERENT OUTPUTS
use Log::Handler;
my $log = Log::Handler->new();
$log->add(
file => {
filename => 'common.log',
mode => 'append',
maxlevel => 6,
minlevel => 5,
}
);
$log->add(
file => {
filename => 'error.log',
mode => 'append',
maxlevel => 4,
minlevel => 0,
}
);
$log->add(
email => {
host => 'mx.bar.example',
hello => 'EHLO my.domain.example',
timeout => 120,
from => 'bar@foo.example',
to => 'foo@bar.example',
subject => 'your subject',
buffer => 0,
maxlevel => 0,
}
);
# log to common.log
$log->info("this is a info message");
# log to error.log
$log->warning("this is a warning");
# log to error.log and to foo@bar.example
$log->emergency("this is a emergency message");
=head1 FILTER MESSAGES
my $log = Log::Handler->new();
$log->add(
screen => {
newline => 1,
maxlevel => 6,
filter_message => {
match1 => 'foo',
match2 => 'bar',
match3 => 'baz',
condition => '(match1 && match2) && !match3'
}
}
);
$log->info('foo');
$log->info('foo bar');
$log->info('foo baz');
=head2 FILTER CALLER
This example shows you how it's possilbe to debug messages
only from a special namespace.
my $log = Log::Handler->new();
$log->add(
file => {
filename => 'file1.log',
mode => 'append',
newline => 1,
maxlevel => 'warning',
}
);
$log->add(
screen => {
maxlevel => 'debug',
newline => 1,
message_layout => 'message from %p - %m',
filter_caller => qr/^Foo::Bar\z/,
}
);
$log->warning('a warning here');
package Foo::Bar;
$log->info('an info here');
1;
=head2 ANOTHER FILTER
filter_message => 'as string'
filter_message => qr/as regexp/
filter_message => sub { shift->{message} =~ /as code ref/ }
# or with conditions
filter_message => {
match1 => 'as string',
match2 => qr/as regexp/',
condition => 'match1 || match2',
}
filter_caller => 'as string'
filter_caller => qr/as regexp/
=head1 CONFIG
File: file.conf
<file>
<default>
newline = 1
permissions = 0640
timeformat = %b %d %H:%M:%S
fileopen = 1
reopen = 1
mode = append
debug_mode = 2
message_layout = "%T %H[%P] [%L] %S: "
</default>
<common>
filename = example.log
maxlevel = info
minlevel = warn
</common>
<error>
filename = example-error.log
maxlevel = warn
minlevel = emergency
</error>
<debug>
filename = example-debug.log
maxlevel = debug
minlevel = debug
</debug>
</file>
<screen>
<foo>
log_to = STDERR
dump = 1
maxlevel = debug
minlevel = debug
</foo>
</screen>
Script:
use Log::Handler;
my $log = Log::Handler->new();
$log->config(config => 'file.conf');
=head1 CHECK FOR ACTIVE LEVELS
It can be very useful if you want to check if a level is active.
use Log::Handler;
use Data::Dumper;
my $log = Log::Handler->new();
$log->add(
file => {
filename => 'file1.log',
mode => 'append',
maxlevel => 4,
}
);
my %hash = (foo => 1, bar => 2);
Now you want to dump the hash, but not in any case.
if ( $log->is_debug ) {
my $dump = Dumper(\%hash);
$log->debug($dump);
}
This would dump the hash only if the level debug is active.
=head1 GLOBAL LOG HANDLER
A long time I was thinking about to provide a global log mechanism like
# use Log::Handler alias => accessor;
use Log::Handler myapp => 'LOG';
LOG->config(config => 'myapp.conf');
and then just inlucde C<Log::Handler> into all other modules of your project and
use a global logger like:
use Log::Handler 'myapp';
LOG->info('an info here');
I through away this idea because it would come with a lot of problems.
If you want to use a feature like this then you can write your own thing.
package MyAPP::Logger;
use strict;
use warnings;
use Log::Handler;
use constant LOG => Log::Handler->new();
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(LOG);
LOG->config(config => 'myapp.conf');
1;
Now you can include C<MyAPP::Logger> into all the modules of your project and access
the logger with
use MyAPP::Logger;
LOG->info('an info here');
=head1 AUTHOR
Jonny Schulz <jschulz.cpan(at)bloonix.de>.
=cut
|