private void i9Timer_Tick(object sender) { try { NotaFiscal nf = new NotaFiscal(); string msg = nf.Gerar(); using (StreamWriter vWriter = new StreamWriter(path + fileLog, true)) { vWriter.WriteLine("i9ti Service: Serviço de Emissão da NF rodou em " + DateTime.Now.ToString() + " - Mensagem de Retorno: " + msg); vWriter.Flush(); vWriter.Close(); } } catch (Exception ex) { System.Diagnostics.Debug.Print(ex.Message); } finally { } // i9eventLog.WriteEntry("i9ti Service: Serviço monitorado.", EventLogEntryType.Information, eventId++); }