Exemplo n.º 1
0
 /// <summary>
 /// Fires up a logo server if not already running
 /// </summary>
 void LoadLogoServer()
 {
     try
     {
         LogoServer = new HttpLogoServer(8080, Global.DirectorySeparator + "html" + Global.DirectorySeparator + "logo");
     }
     catch (Exception)
     {
         Debug.Console(0, Debug.ErrorLogLevel.Notice, "NOTICE: Logo server cannot be started. Likely already running in another program");
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Fires up a logo server if not already running
 /// </summary>
 void LoadLogoServer()
 {
     try
     {
         LogoServer = new HttpLogoServer(8080, @"\html\logo");
     }
     catch (Exception)
     {
         Debug.Console(0, "NOTICE: Logo server cannot be started. Likely already running in another program");
     }
 }