Beispiel #1
0
        private void CreateBallonTipp(LogData data)
        {
            var title = string.Empty;

            SLLogEvents.FireShowBallonTipp(new SLLogEventArgs {
                Type = data.Type, Titel = "SimpleReport " + data.Type.ToString() + "!", LogMessage = data.Message
            });
        }
 private static void OnDoNotifyAction(SLNotifyerEventArgs args)
 {
     switch (args.Action)
     {
     case NotifyActionTypes.ShowLog:
         SLLogEvents.FireShowLogFile();
         break;
     }
 }
        private void CreateBallonTipp(LogData data)
        {
            if (Settings.OnlyConsoleOutput)
            {
                return;
            }

            var title = string.Empty;

            if (Settings.IsMainThread)
            {
                SLLogEvents.FireShowBallonTipp(new SLLogEventArgs {
                    Type = data.Type, Titel = "DatabaseFactory " + data.Type.ToString() + "!", LogMessage = data.Message
                });
            }
        }