summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.inspircd.inc2
-rw-r--r--src/helperfuncs.cpp53
2 files changed, 53 insertions, 2 deletions
diff --git a/.inspircd.inc b/.inspircd.inc
index 183c11c71..0ba1f88de 100644
--- a/.inspircd.inc
+++ b/.inspircd.inc
@@ -115,7 +115,7 @@ sub debug {
checkgdb();
# If we are still alive here.. Try starting the IRCd..
- system("gdb --command=$basepath/.gdbargs --args $binpath/$executable -nofork -debug -nolog");
+ system("gdb --command=$basepath/.gdbargs --args $binpath/$executable -nofork -debug");
}
sub screendebug
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index d2fbca6f6..3ff94e4f6 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -6,7 +6,7 @@
* See: http://www.inspircd.org/wiki/index.php/Credits
*
* This program is free but copyrighted software; see
- * the file COPYING for details.
+ * the file COPYING for details.
*
* ---------------------------------------------------
*/
@@ -287,6 +287,57 @@ bool InspIRCd::OpenLog(char**, int)
this->Logs->SetupNoFork();
}
Config->MyDir = Config->GetFullProgDir();
+
+ /* Attempt to find home directory, portable to windows */
+ const char* home = getenv("HOME");
+ if (!home)
+ {
+ /* No $HOME, log to %USERPROFILE% */
+ home = getenv("USERPROFILE");
+ if (!home)
+ {
+ /* Nothing could be found at all, log to current dir */
+ Config->logpath = "./startup.log";
+ }
+ }
+
+ if (!Config->writelog) return true; // Skip opening default log if -nolog
+
+ if (!*this->LogFileName)
+ {
+ if (Config->logpath.empty())
+ {
+ std::string path = std::string(home) + "/.inspircd";
+ if (!mkdir(path.c_str(), 0700))
+ {
+ /* Log to ~/.inspircd/ircd.log */
+ Config->logpath = path + "/startup.log";
+ }
+ else
+ {
+ /* Couldn't make ~/.inspircd directory, log to current dir */
+ Config->logpath = "./startup.log";
+ printf("\nWARNING: Unable to create directory: %s (%s)\n", path.c_str(), strerror(errno));
+ }
+ }
+
+ Config->log_file = fopen(Config->logpath.c_str(),"a+");
+ }
+ else
+ {
+ Config->log_file = fopen(this->LogFileName,"a+");
+ }
+
+ if (!Config->log_file)
+ {
+ return false;
+ }
+
+ FileWriter* fw = new FileWriter(this, Config->log_file);
+ FileLogStream *f = new FileLogStream(this, (Config->forcedebug ? DEBUG : DEFAULT), fw);
+
+ this->Logs->AddLogType("*", f, true);
+
return true;
}