diff options
author | Petr Baudis <pasky@suse.cz> | 2005-09-24 16:13:01 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-24 11:20:45 -0700 |
commit | 9048fe1c50499d562dcf73094f173b12bdb084c4 (patch) | |
tree | f1a6452c40eacc7d384eb3e5bd5407d4b5dbc6bd /Documentation/git-daemon.txt | |
parent | b5cf3c8b7767e5f2c8b0df718ef91ccfc36c61fe (diff) | |
download | git-9048fe1c50499d562dcf73094f173b12bdb084c4.tar.gz git-9048fe1c50499d562dcf73094f173b12bdb084c4.tar.xz |
[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.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-daemon.txt b/Documentation/git-daemon.txt index 250e93974..065f2aa72 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. |