/// <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"); } }
/// <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"); } }