diff options
| author | 2005-05-21 03:25:03 +0000 | |
|---|---|---|
| committer | 2005-05-21 03:25:03 +0000 | |
| commit | 9d0c7a0bcca345598ccd7607e31bcdbc8f1008b3 (patch) | |
| tree | 6c984958dfb9ada2b8d6b105802b13779feea97d /src/inspircd.cpp | |
| parent | Fixed crappy const stuff (diff) | |
| download | inspircd++-9d0c7a0bcca345598ccd7607e31bcdbc8f1008b3.tar.gz inspircd++-9d0c7a0bcca345598ccd7607e31bcdbc8f1008b3.tar.bz2 inspircd++-9d0c7a0bcca345598ccd7607e31bcdbc8f1008b3.zip | |
*** empty log message ***
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1470 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 4e6e0f86c..5862400ce 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -2523,7 +2523,12 @@ int InspIRCd(char** argv, int argc) printf("ERROR: Could not write to logfile %s, bailing!\n\n",logpath.c_str()); Exit(ERROR); } + +#ifdef IS_CYGWIN + printf("Logging to ircd.log...\n"); +#else printf("Logging to %s...\n",logpath.c_str()); +#endif log(DEFAULT,"$Id$"); if (geteuid() == 0) |
