Add the asset service connectors and sample config. READ WARNINGS!!!

This commit is contained in:
Melanie Thielker
2009-05-09 02:49:55 +00:00
parent cc2b072f6e
commit c1e7352d75
11 changed files with 384 additions and 9 deletions

View File

@@ -80,7 +80,9 @@ namespace OpenSim
{
log4net.Appender.FileAppender appender =
(log4net.Appender.FileAppender)m_logFileAppender;
appender.File = startupConfig.GetString("LogFile", "OpenSim.log");
string fileName = startupConfig.GetString("LogFile", String.Empty);
if (fileName != String.Empty)
appender.File = fileName;
m_log.InfoFormat("[LOGGING] Logging started to file {0}", appender.File);
}
}