Пример #1
0
 private static void TestGrowl()
 {
     try
     {
         GrowlPublisher.growlNotify("Test Message", "If you have recieved this message then Growl is working");
     }
     catch (Exception ex)
     {
         Logging.Log(LogManager.GetCurrentClassLogger(), "", ex);
     }
 }
Пример #2
0
 private static void RegisterGrowl()
 {
     try
     {
         GrowlPublisher.growlRegister();
     }
     catch (Exception ex)
     {
         Logging.Log(LogManager.GetCurrentClassLogger(), "", ex);
     }
 }