From: Chris W. <la...@us...> - 2005-02-26 05:06:09
|
Update of /cvsroot/openinteract/OpenInteract2/doc/Manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17792 Modified Files: Logging.pod Log Message: change 'database' references to 'filesystem Index: Logging.pod =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/doc/Manual/Logging.pod,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Logging.pod 30 Nov 2004 00:24:31 -0000 1.4 --- Logging.pod 26 Feb 2005 05:05:58 -0000 1.5 *************** *** 121,124 **** --- 121,126 ---- So the following would write to the appender: + # Note: LOG_OI and LOG_CONFIG are constants; more below + my $log = get_logger( LOG_OI ); $log->info( "This info message will get written" ); *************** *** 156,161 **** OI2 comes with a custom appender which takes a message, creates an ! error object from it and saves it to the database. From there you can ! browse it using the OI admin tools. WARNING: Do not set the 'Threshold' too low on the OI --- 158,163 ---- OI2 comes with a custom appender which takes a message, creates an ! error object from it and saves it to your filesystem organized by ! date. From there you can browse it using the OI admin tools. WARNING: Do not set the 'Threshold' too low on the OI *************** *** 173,176 **** --- 175,180 ---- L<OpenInteract2::Log::OIAppender|OpenInteract2::Log::OIAppender> + L<OpenInteract2::ErrorStorage|OpenInteract2::ErrorStorage> + =head1 COPYRIGHT |