Thread Neue Formate bei Log::Tiny hinzufügen (3 answers)
Opened by hertha at 2009-04-29 14:16

hertha
 2009-04-29 16:23
#121021 #121021
User since
2008-10-28
2 Artikel
BenutzerIn
[default_avatar]
Hello GwenDragon,

thanks for your reply.

I´ve extended the format hash inside the module and it works :-)

Bitte entschuldige das ich nicht in deutsch geschrieben habe, aber ich dachte das Forum sei englischsprachig.
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
%formats = (
...
y => [ 's', sub { sprintf("%04d%02d%02d %02d%02d",
( localtime() )[5]+1900,
( localtime() )[4]+1,
( localtime() )[3],
( localtime() )[2],
( localtime() )[1],
)
}, ], # my own formatstring
);

View full thread Neue Formate bei Log::Tiny hinzufügen