diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-05-27 05:41:31 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-05-27 05:41:31 +0000 |
commit | ea5a3c55acfd7e2e1dc5d9da9153cef629255ccc (patch) | |
tree | 5378814d4e8941c8777beb99fe3c39d6ba6f2ba8 /devel/p5-Log-Agent/pkg-descr | |
parent | 1d285900aaf468f78d8912beb53821ab81c84ab2 (diff) | |
download | FreeBSD-ports-ea5a3c55acfd7e2e1dc5d9da9153cef629255ccc.zip FreeBSD-ports-ea5a3c55acfd7e2e1dc5d9da9153cef629255ccc.tar.gz |
A set of perl modules that allows you to enhance logging capabilities
PR: ports/27589
Submitted by: Jesse McConnell <jesse_mcconnell@hotmail.com>
Diffstat (limited to 'devel/p5-Log-Agent/pkg-descr')
-rw-r--r-- | devel/p5-Log-Agent/pkg-descr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/p5-Log-Agent/pkg-descr b/devel/p5-Log-Agent/pkg-descr new file mode 100644 index 0000000..e57c04a --- /dev/null +++ b/devel/p5-Log-Agent/pkg-descr @@ -0,0 +1,20 @@ +The Log::Agent module provides an abstract layer for logging and tracing, which +is independant from the actual method used to physically perform those +activities. It acts as an agent (hence the name) that collects the requests and +delegates processing to a sublayer: the logging driver. + +The Log::Agent module is meant to be used in all reusable components, since +they cannot know in advance how the application which ends up using them will +perform its logging activities: either by emitting messages on stdout and +errors on stderr, or by directing messages to logfiles, or by using syslog(3). + +The logging interface is common for all the logging drivers, and is therefore +the result of a compromise between many logging schemes: any information given +at this level must be either handled by all drivers, or may be ignored +depending on the application's final choice. + +WARNING: THIS INTERFACE IS STILL SOMEWHAT ALPHA AND COULD STILL CHANGE +DEPENDING ON THE FEEDBACK THE AUTHOR RECIEVES, WITHOUT ANY BACKWARD +COMPATIBILITY ASSURANCE. + +Author: Raphael Manfredi <Raphael_Manfredi@pobox.com> |