You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by af...@apache.org on 2007/05/27 19:04:42 UTC

svn commit: r542003 - in /logging/log4cxx/trunk/docs: Makefile.am simplesocketserver.1

Author: afester
Date: Sun May 27 10:04:42 2007
New Revision: 542003

URL: http://svn.apache.org/viewvc?view=rev&rev=542003
Log:
LOGCXX-182: added man page for simplesocketserver

Added:
    logging/log4cxx/trunk/docs/simplesocketserver.1
Modified:
    logging/log4cxx/trunk/docs/Makefile.am

Modified: logging/log4cxx/trunk/docs/Makefile.am
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/docs/Makefile.am?view=diff&rev=542003&r1=542002&r2=542003
==============================================================================
--- logging/log4cxx/trunk/docs/Makefile.am (original)
+++ logging/log4cxx/trunk/docs/Makefile.am Sun May 27 10:04:42 2007
@@ -13,7 +13,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 #
-EXTRA_DIST = Doxyfile mainpage.dox introduction.dox
+EXTRA_DIST = Doxyfile mainpage.dox introduction.dox simplesocketserver.1
 
 # DOC is defined if installer requests doc generation.
 

Added: logging/log4cxx/trunk/docs/simplesocketserver.1
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/docs/simplesocketserver.1?view=auto&rev=542003
==============================================================================
--- logging/log4cxx/trunk/docs/simplesocketserver.1 (added)
+++ logging/log4cxx/trunk/docs/simplesocketserver.1 Sun May 27 10:04:42 2007
@@ -0,0 +1,28 @@
+.TH "simplesocketserver" "1" "April 2005" "" ""
+.SH "NAME"
+simplesocketserver \- a simple socket server for logging
+.SH "SYNOPSIS"
+.PP
+simplesocketserver <port> <configFile>
+.PP
+.SH "DESCRIPTION"
+.PP
+simplesocketserver is part of the log4cxx C++ logging framework
+and provides a simple server for centralized logging.
+.PP
+.SH "OPTIONS"
+.PP
+The following parameters are required to run simplesocketserver:
+.PP
+.IP "\fB<port>\fP" 
+The TCP port on which to listen for logging requests.
+.IP "\fB<configFile>\fP" 
+The configuration file for simplesocketserver. This file is used
+to configure the appenders to which logging requests are sent. The
+format is the same as the usual property file which is used 
+to configure log4cxx.
+.PP 
+.SH "AUTHOR" 
+.PP 
+The log4cxx framework was written by Michael Catanzariti and
+Edmond Nolan.