You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(38) |
Sep
(126) |
Oct
(23) |
Nov
(72) |
Dec
(36) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(76) |
Feb
(32) |
Mar
(19) |
Apr
(6) |
May
(54) |
Jun
(40) |
Jul
(45) |
Aug
(35) |
Sep
(51) |
Oct
(67) |
Nov
(10) |
Dec
(50) |
2004 |
Jan
(51) |
Feb
(22) |
Mar
(22) |
Apr
(28) |
May
(53) |
Jun
(99) |
Jul
(38) |
Aug
(49) |
Sep
(23) |
Oct
(29) |
Nov
(30) |
Dec
(48) |
2005 |
Jan
(15) |
Feb
(21) |
Mar
(25) |
Apr
(16) |
May
(131) |
Jun
|
Jul
(8) |
Aug
(5) |
Sep
(15) |
Oct
|
Nov
(15) |
Dec
(12) |
2006 |
Jan
(15) |
Feb
(20) |
Mar
(8) |
Apr
(10) |
May
(3) |
Jun
(16) |
Jul
(15) |
Aug
(11) |
Sep
(17) |
Oct
(27) |
Nov
(11) |
Dec
(12) |
2007 |
Jan
(19) |
Feb
(18) |
Mar
(33) |
Apr
(4) |
May
(15) |
Jun
(22) |
Jul
(19) |
Aug
(20) |
Sep
(14) |
Oct
(4) |
Nov
(34) |
Dec
(11) |
2008 |
Jan
(8) |
Feb
(18) |
Mar
(2) |
Apr
(4) |
May
(26) |
Jun
(9) |
Jul
(8) |
Aug
(8) |
Sep
(3) |
Oct
(17) |
Nov
(14) |
Dec
(4) |
2009 |
Jan
(6) |
Feb
(41) |
Mar
(21) |
Apr
(10) |
May
(21) |
Jun
|
Jul
(8) |
Aug
(4) |
Sep
(3) |
Oct
(8) |
Nov
(6) |
Dec
(5) |
2010 |
Jan
(14) |
Feb
(13) |
Mar
(7) |
Apr
(12) |
May
(4) |
Jun
(1) |
Jul
(11) |
Aug
(5) |
Sep
|
Oct
(1) |
Nov
(10) |
Dec
|
2011 |
Jan
(7) |
Feb
(3) |
Mar
(1) |
Apr
(5) |
May
|
Jun
(1) |
Jul
(6) |
Aug
(6) |
Sep
(10) |
Oct
(5) |
Nov
(4) |
Dec
(5) |
2012 |
Jan
(4) |
Feb
(5) |
Mar
(1) |
Apr
(7) |
May
(1) |
Jun
|
Jul
(2) |
Aug
|
Sep
(5) |
Oct
(5) |
Nov
(4) |
Dec
(5) |
2013 |
Jan
(6) |
Feb
|
Mar
(14) |
Apr
(9) |
May
(3) |
Jun
(2) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
(4) |
Dec
(6) |
2014 |
Jan
|
Feb
(1) |
Mar
(10) |
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(1) |
Nov
|
Dec
(4) |
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Rob R. <Rob...@no...> - 2005-07-05 20:17:44
|
Hi, I'm new to log4perl/log4j. My goal is to have a few different running perl programs write to the same log file, perhaps simultaneously. To test that ability, I wrote the simple perl program and log given below. Then I kicked off (i.e. bash> test_log4perl.pl &) the perl program 10 times so they'd all be running simultaneously. I noticed in my resulting log file that the filename %F is occasionally given as "(eval 61)" and the method name is shown as "Log::Log4perl::Logger::__ANON__". Specifically, I'm expecting this log message: 2005/07/05 13:18:10 INFO > test_log4perl.pl(pid=24623):30 main:: - i= 988 slept for 0 of 0 seconds And occasionally, I'm getting one like this: 2005/07/05 12:25:18 INFO > (eval 61)(pid=24263):42 Log::Log4perl::Logger::__ANON__ - i= 243 slept for 1.64915744429506 of 1 seconds The log config and perl program follow. Any help appreciated! ######## log config ######### # # Author: Rob Redmon # Rob...@no... # log4perl.logger.Ionosonde=DEBUG, Logfile log4perl.appender.Logfile=Log::Dispatch::FileRotate log4perl.appender.Logfile.filename=log/load_sec.log log4perl.appender.Logfile.mode=append log4perl.appender.Logfile.layout=Log::Log4perl::Layout::PatternLayout log4perl.appender.Logfile.layout.ConversionPattern=%d %p > %F{1}(pid=%P):%L %M - %m%n log4perl.appender.Logfile.max=366 #have to choose by size or date, not both: #log4perl.appender.Logfile.size=1 log4perl.appender.Logfile.DatePattern = yyyy-MM-dd log4perl.appender.Logfile.TZ = MST ######## simple perl ######## #!/usr/bin/perl use strict; use warnings; use lib '../../lib/perl'; use IO::Dir; #use Log::Log4perl qw(:easy); use Log::Log4perl qw(get_logger :levels); local *__ANON__ = "test_log4perl.pl"; #Log::Log4perl->easy_init($INFO); Log::Log4perl->init_and_watch("log.conf", 60); #recheck config file every 60 seconds ##### # Config ##### my $logger = get_logger("Ionosonde"); $logger->level($DEBUG); ##### # Test ##### $logger->info("Testing log4perl: START"); for (my $i=0; $i<1000; $i++) { my $t_sec = rand(2); my $n_sec = sleep($t_sec); $logger->info("i= ",$i," slept for ",$t_sec," of ",$n_sec," seconds"); } $logger->info("Testing log4perl: END"); -- Rob Redmon NOAA/NGDC 325 Broadway E/GC2 Boulder, Colorado 80305 Tel: (303) 497-4331 Fax: (303) 497-6513 Rob...@no... "Engineering is the art of making what you want from things you can get." |
From: Don S. <do...@se...> - 2005-05-19 13:52:51
|
On 19:39 Wed 18 May , Mike Schilli wrote: > lately, the log4perl-devel mailing list has received an untolerable amoun= t of > spam, so I've enabled "moderation mode", which means that every post must= be > approved by either Kevin or myself. When the spam flood dies down, we mig= ht > revert it to the previous state. Any objections, please let me know! The gaim-devel list was similarly stricken. Rather than force moderation, they resolved to simply block mail coming from 'mailer-daemon', as those are what all the spam rejects are. Note that the list wasn't flooded with spam, it was flooded with bouncebacks. The spammers were using the list address as the sender. Just an FYI. I think just rejecting 'mailer-daemon' emails would go a long way and not force admins to moderate every post. --=20 Don Seiler do...@se... Public Key: http://pgp.mit.edu:11371/pks/lookup?op=3Dget&search=3D0xFC87F041 Fingerprint: 0B56 50D5 E91E 4D4C 83B7 207C 76AC 5DA2 FC87 F041 |
From: Mike S. <m...@pe...> - 2005-05-19 02:39:58
|
Hey there, Log4perl enthusiasts, lately, the log4perl-devel mailing list has received an untolerable amount of spam, so I've enabled "moderation mode", which means that every post must be approved by either Kevin or myself. When the spam flood dies down, we might revert it to the previous state. Any objections, please let me know! -- Mike Mike Schilli m...@pe... |
From: <mai...@gr...> - 2005-05-18 19:23:47
|
pFWmQ6q6r2SopbVMqmu2x7BloUOldaazuNOqwLhzqrq3fK37pH6v4LbHsGW2bKXzptymubFiuLmh Q6bTsXq2x7Blr2SopanSpc6qurlxpGy2bKXzpmGnfaFBtUyqa71Uu3uxeqxPqsC4c7d8rfuhQw0K DQqmcKpHsXqsT7d8rfuhQaVppUimYiBbuXGkbLZspfOzXal3XSC69K22oUHAy7X4qc7F3KfztW6/ /arAuHOqurlxpGy2bKXzpmGnfaFDDQoNCqZwqkexeqSjrE+3fK37q2+3Ua1upVukSrNvrdOqwLhz oUGxeqVppUil36dZpdO90KVbpEqhQw0KDQqtWa1utmmkQKhCpEa40SBNU04gqsC4c6nOqOSlTKq6 qPOnVaFBvdDCc8T9p9qtzKq6IFu7oan6XSC69K22oUMNCmh0dHA6Ly9oZWxwLm1zbi5jb20vemhf dHcvaGVscHdpbmRvdy5hc3A/SU5JPXdjdjguaW5pJkhfQVBQPU1TTitXZWIrR3JvdXBzDQoNCrdQ wcKxeqFBDQoNCk1TTiCqwLhzDQo= |
From: <mai...@gr...> - 2005-05-18 18:54:12
|
You sent the message below to an unrecognized group: = Bra...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:54:10
|
You sent the message below to an unrecognized group: = net...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:54:08
|
You sent the message below to an unrecognized group: = MB...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:54:07
|
zt63qM6qxPq0q8vNz8LD5rXE08q8/qGj1rvT0MTHuPbJ58f4tcSzydSxssW/ydLUz/K4w9XKu6e3 osvNtefX09PKvP6ho82ouf3KtrHwxPq3osvN1eK34tPKvP7Kscv5yrnTw7XEtefX09PKvP612Na3 o6zIt8jPxPqyorK7yvTT2rjDyefH+LXEs8nUsaGjDQoNCsjnufvE+srHuMPJ58f4tcSzydSxo6zU 8r/J0tTU2sT6tcShsLXn19PTyrz+yejWw6Gx0rPW0Lzssum78rj8uMTXorLhtMvJ58f4yrG1xLXn 19PTyrz+tdjWt6GjDQoNCsjnufvE+rK7yse4w8nnx/i1xLPJ1LGjrLWrz6PN+7zTyOu0y8nnx/ij rMTHw7TP1tTavs2/ydLUyerH67zTyOuhow0KDQrI9NKqu/G1w9PQudggTVNOIMnnx/i1xLj8tuDQ xc+io6y78tXf0OjSqr340ruyvbXEsO/W+qOsx+uyztTEobCw79b6obHH+NPy1tC1xMTayN2how0K aHR0cDovL2hlbHAubXNuLmNvbS96aF90dy9oZWxwd2luZG93LmFzcD9JTkk9d2N2OC5pbmkmSF9B UFA9TVNOK1dlYitHcm91cHMNCg0K0LvQu6GjDQoNCk1TTiDJ58f4DQo= |
From: <mai...@gr...> - 2005-05-18 18:54:06
|
Your message below could not be delivered. Only members of that group = may send e-mail to this account. The e-mail address from which you sent = this message does not identify you as a group member. If you are a member, you can check or change the e-mail address you = registered with this group at your E-mail Settings page. If you are not a member and would like to join this group, you can apply = to join now. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:54:04
|
You sent the message below to an unrecognized group: = Ste...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:54:00
|
You sent the message below to an unrecognized group: = bug...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:53:59
|
Your message below could not be delivered. Only members of that group = may send e-mail to this account. The e-mail address from which you sent = this message does not identify you as a group member. If you are a member, you can check or change the e-mail address you = registered with this group at your E-mail Settings page. If you are not a member and would like to join this group, you can apply = to join now. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 18:53:57
|
vsa3ocDHILHbwLsgwPy03sfPwfYguPjH373AtM+02S4gxL+5wrTPxrwgyLi/+Li4IMDMIMHWvNK3 ziC43sDPwLsgurizviC89iDA1r3AtM+02S4gwMwgsdvAuyC6uLO9ILjewM8gwda80rTCIMi4v/gg wda80rfPv6Egte63z7XHvu4gwNbB9iC+ysC6IMHWvNLA1LTPtNkuDQoNCsDMIMS/ucK0z8a8wMcg yLi/+MDPILDmv+wguN7AzyC8s8GkIMbkwMzB9r+hvK0gx/bA5yC17rfPtce+7iDA1rTCILjewM8g wda80rimIMiuwM7Hz7DtILqvsObH0iC89iDA1r3AtM+02S4NCg0KwMwgxL+5wrTPxrzAxyDIuL/4 wMwgvsa00SC60MC4t84sILChwNTAuyC/+MfSILDmv+wgwfax3SC9xcO7x9IgvPYgwNa9wLTPtNku DQoNCk1TTiDEv7nCtM/GvL+hILTrx9EgwNq8vMfRIMGkurizqiDB9r/4wLogtbW/8ri7wLsgwvzB tsfPvLy/5C4NCmh0dHA6Ly9oZWxwLm1zbi5jb20va29fa3IvaGVscHdpbmRvdy5hc3A/SU5JPXdj djguaW5pJkhfQVBQPU1TTitXZWIrQ29tbXVuaXRpZXMNCg0KsKi758fVtM+02S4NCg0KTVNOIMS/ ucK0z8a8DQo= |
From: <mai...@gr...> - 2005-05-18 18:53:56
|
You sent the message below to an unrecognized group: ga...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <jh...@ik...> - 2005-05-18 13:23:49
|
Lese selbst: http://www.die-kommenden.net/dk/zeitgeschichte/graeberschaendung.htm |
From: <mai...@gr...> - 2005-05-18 09:19:51
|
Your message below could not be delivered. Only members of that group = may send e-mail to this account. The e-mail address from which you sent = this message does not identify you as a group member. If you are a member, you can check or change the e-mail address you = registered with this group at your E-mail Settings page. If you are not a member and would like to join this group, you can apply = to join now. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_ca/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 09:19:50
|
You sent the message below to an unrecognized group: = to...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 06:36:17
|
You sent the message below to an unrecognized group: = Sea...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <re...@we...> - 2005-05-18 04:48:12
|
Lese selbst: http://www.npd.de/npd_info/deutschland/2005/d0405-39.html |
From: <mai...@gr...> - 2005-05-18 04:05:06
|
=1B$B2<$N%a%C%;!<%8$OG[?.$5$l$^$;$s$G$7$?!#$3$N%"%+%&%s%H$KEE;R%a!<%k$rAw= ?.$G$-$k$N$O!"%3%_%e%K%F%#$N%a%s%P!<$N$_$G$9!#$*5RMM$NEE;R%a!<%k=1B(B = =1B$B%"%I%l%9$O%3%_%e%K%F%#=1B(B = =1B$B%a%s%P!<$H$7$FG'>Z$5$l$^$;$s$G$7$?!#=1B(B =1B$B%a%s%P!<$N>l9g!"=1B(B[=1B$BEE;R%a!<%k$N@_Dj=1B(B] = =1B$B%Z!<%8$G!"$3$N%3%_%e%K%F%#$KEPO?$7$?EE;R%a!<%k=1B(B = =1B$B%"%I%l%9$r3NG'$7$?$j!"JQ99$9$k$3$H$,$G$-$^$9!#=1B(B =1B$B%a%s%P!<$G$O$J$/!"$3$N%3%_%e%K%F%#$K;22C$7$?$$>l9g$O!":#$9$0;22C$r?=3D= $79~$`$3$H$,$G$-$^$9!#=1B(B MSN =1B$B%3%_%e%K%F%#$N>\:Y$^$?$O%5%]!<%H$K$D$$$F$O!"%X%k%W=1B(B = =1B$B%Z!<%8$r;2>H$7$F$/$@$5$$!#=1B(B http://help.msn.com/ja_jp/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+=1B= $B%3%_%e%K%F%#=1B(B =1B$B$"$j$,$H$&$4$6$$$^$9=1B(B MSN =1B$B%3%_%e%K%F%#=1B(B |
From: <mai...@gr...> - 2005-05-18 04:05:05
|
You sent the message below to an unrecognized group: = Chr...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 04:05:01
|
You sent the message below to an unrecognized group: = gr...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 04:04:56
|
You sent the message below to an unrecognized group: = a-...@gr... To check for the correct e-mail address of a group you belong to: 1. Go to the group's "What's New" page. 2. Click "My E-Mail Settings" under the Tools area on the upper right = side of the page. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |
From: <mai...@gr...> - 2005-05-18 04:04:53
|
Het onderstaande bericht kon niet worden afgeleverd. Alleen leden van de = groep mogen e-mail aan deze account sturen. Uit het e-mailadres waarmee = je dit bericht hebt verzonden, blijkt niet dat je lid bent van de groep. Als je lid bent, kun je het e-mailadres waarmee je bij deze groep bent = geregistreerd, controleren of wijzigen op de pagina E-mailinstellingen. Als je geen lid bent en je je bij deze groep wilt aansluiten, kun je nu = een aanvraag indienen. Als je meer informatie wilt over MSN Groepen of als je meer = ondersteuning wilt, kijk dan onder Help. http://help.msn.com/nl_be/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roepen Bedankt, MSN Groepen |
From: <mai...@gr...> - 2005-05-18 04:04:51
|
Your message below could not be delivered. Only members of that group = may send e-mail to this account. The e-mail address from which you sent = this message does not identify you as a group member. If you are a member, you can check or change the e-mail address you = registered with this group at your E-mail Settings page. If you are not a member and would like to join this group, you can apply = to join now. To learn more about MSN Groups or for further assistance, please see our = Help area. http://help.msn.com/en_us/helpwindow.asp?INI=3Dwcv8.ini&H_APP=3DMSN+Web+G= roups Thanks, MSN Groups |