diff options
| author | Emil Williams | 2025-08-20 13:48:19 +0000 |
|---|---|---|
| committer | Emil Williams | 2025-08-20 13:48:19 +0000 |
| commit | ca0ab632948470e576e8ea1385499c577fd03422 (patch) | |
| tree | 5e7c5fb69273112276361963b8513270aef0a3f3 | |
| parent | fd209e3f2564897f209da0ab1bb15000fa63e09d (diff) | |
| download | gorillanest-ca0ab632948470e576e8ea1385499c577fd03422.tar.xz gorillanest-ca0ab632948470e576e8ea1385499c577fd03422.tar.zst | |
Perfection Assured The First Time
| -rw-r--r-- | git/private/.gitkeep | 0 | ||||
| -rw-r--r-- | git/public/.gitkeep | 0 | ||||
| -rwxr-xr-x | gorillanest | 5 |
3 files changed, 2 insertions, 3 deletions
diff --git a/git/private/.gitkeep b/git/private/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/git/private/.gitkeep diff --git a/git/public/.gitkeep b/git/public/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/git/public/.gitkeep diff --git a/gorillanest b/gorillanest index 300731d..f5c26f7 100755 --- a/gorillanest +++ b/gorillanest @@ -7,7 +7,6 @@ use CGI; use FCGI; use Switch::Back; use Syntax::Keyword::Try; -use Sys::Syslog; use Template; use URI::Escape; use Cwd; @@ -15,7 +14,7 @@ use Cwd; use Data::Dumper; sub info { - syslog("info", join(' ', @_)); + warn join(' ', @_); } # significant dirs only @@ -60,7 +59,7 @@ sub GN::repository { # /$username/$repository return \%data; } -openlog("gorillanest", "ndelay,pid", Sys::Syslog::LOG_DAEMON); +open STDERR, '>', '/tmp/gorillanest.log' or die "You Will Never Ever See This Message Hopefully: $!"; my $sock = FCGI::OpenSocket('/tmp/gorillanest.socket', 100); try { my $public = 'git/public'; |
