コード例 #1
0
ファイル: BaseOpenSimServer.cs プロジェクト: p07r0457/opensim
 /// <summary>
 /// Console output is only possible if a console has been established.
 /// That is something that cannot be determined within this class. So
 /// all attempts to use the console MUST be verified.
 /// </summary>
 /// <param name="msg"></param>
 protected void Notice(string msg)
 {
     if (m_console != null)
     {
         m_console.Output(msg);
     }
 }