[Fix minor issue with logfile clinton@unknownlamer.org**20090224035003 Ignore-this: 97c7b1eac19151e5dbe9c592e26b2dfa Oops, logFileName is a class member and not a local variable...prepending it with the logs_dir is not ok. ] { hunk ./source/Bot.C 755 - logFileName = logs_dir + name; + logFileName = name; hunk ./source/Bot.C 759 - logFile.open(logFileName.c_str (), std::ios_base::out | + logFile.open((logs_dir + logFileName).c_str (), std::ios_base::out | hunk ./source/Bot.C 762 - logFile.open(logFileName.c_str (), ios::out | ios::ate + logFile.open((logs_dir + logFileName).c_str (), ios::out | ios::ate }