Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2005-09-24 18:13:01 +0400
committerJunio C Hamano <junkio@cox.net>2005-09-24 22:20:45 +0400
commit9048fe1c50499d562dcf73094f173b12bdb084c4 (patch)
treef1a6452c40eacc7d384eb3e5bd5407d4b5dbc6bd /Documentation/git-daemon.txt
parentb5cf3c8b7767e5f2c8b0df718ef91ccfc36c61fe (diff)
[PATCH] git-daemon --syslog to log through syslog
Well, this makes it even more clear that we need the packet reader and friends to use the daemon logging code. :/ Therefore, we at least indicate in the "Disconnect" log message if the child process exitted with an error code or not. Idea by Linus. Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-daemon.txt')
-rw-r--r--Documentation/git-daemon.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-daemon.txt b/Documentation/git-daemon.txt
index 250e939740..065f2aa721 100644
--- a/Documentation/git-daemon.txt
+++ b/Documentation/git-daemon.txt
@@ -7,7 +7,7 @@ git-daemon - A really simple server for GIT repositories.
SYNOPSIS
--------
-'git-daemon' [--verbose] [--inetd | --port=n]
+'git-daemon' [--verbose] [--syslog] [--inetd | --port=n]
DESCRIPTION
-----------
@@ -32,6 +32,10 @@ OPTIONS
--port::
Listen on an alternative port.
+--syslog::
+ Log to syslog instead of stderr. Note that this option does not imply
+ --verbose, thus by default only error conditions will be logged.
+
--verbose::
Log details about the incoming connections and requested files.