mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
A bit more prominent sign of start up completion :-) thanks HashBox for the ASCII!
This commit is contained in:
@@ -391,6 +391,7 @@ namespace OpenSim
|
||||
}
|
||||
|
||||
// We are done with startup
|
||||
PrintFileToConsole("startuplogo.txt");
|
||||
m_log.Info("[STARTUP]: Startup complete, serving " + m_udpServers.Count.ToString() + " region(s)");
|
||||
}
|
||||
|
||||
@@ -647,6 +648,20 @@ namespace OpenSim
|
||||
}
|
||||
}
|
||||
|
||||
private void PrintFileToConsole(string fileName)
|
||||
{
|
||||
if (File.Exists(fileName))
|
||||
{
|
||||
StreamReader readFile = File.OpenText(fileName);
|
||||
string currentLine = String.Empty;
|
||||
while ((currentLine = readFile.ReadLine()) != null)
|
||||
{
|
||||
m_log.Info("[!]" + currentLine);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Runs commands issued by the server console from the operator
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user