Esempio n. 1
0
 private void OnCoreUpdaterLog(CoreUpdater.LogType type, string message)
 {
     m_TrayIcon.BalloonTipTitle = "SilverSim";
     m_TrayIcon.BalloonTipText  = string.Format("Updater: [{0}] - {1}", type.ToString(), message);
     m_TrayIcon.ShowBalloonTip(10000);
 }
Esempio n. 2
0
 private static void ConsoleUpdaterLog(CoreUpdater.LogType type, string message)
 {
     Console.WriteLine("Updater - [{0}] - {1}", type.ToString(), message);
 }
 public void LogEvent(CoreUpdater.LogType type, string msg)
 {
     m_IO.Write(msg);
 }