From 283bdae0fd382a5b4f45e6b01c97e0b103936104 Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Sun, 6 Feb 2022 16:23:44 +0100 Subject: [PATCH] cleanup --- main.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/main.py b/main.py index b5c2aac..0a0462f 100644 --- a/main.py +++ b/main.py @@ -57,15 +57,12 @@ if __name__ == "__main__": window = PluginRegistry.execute_single("create_main_window") window.show() - # window.open_file("/home/andi/ws/performanceDb/data/production/logs_2018-09-06_2018-09-06.csv") - # window.open_file("/home/andi/ws/performanceDb/data/production/vapbdcom.csv") - # window.open_file("/var/log/syslog") - # PluginRegistry.execute("open_file", "/home/andi/ws/ravenlog/example.log") PluginRegistry.execute("open_file", - "/home/andi/ws/performanceDb/data/production/lt_axc_21.4_133.02_maxInstance/lt_axc_21.4_133.02_maxInstance/app/axcng-service_i-0a69bd43d3624a5bc_172_28_60_222_VADPERFO01AA001_2021-09-21_091717/service/service.log"); + "/home/andi/ws/performanceDb/data/production/lt_axc_21.4_133.02_maxInstance/" + + "lt_axc_21.4_133.02_maxInstance/app/axcng-service_i-0a69bd43d3624a5bc_172_28_" + + "60_222_VADPERFO01AA001_2021-09-21_091717/service/service.log") PluginRegistry.execute("open_file", - "testbed/example.log"); - # window.open_file("C:\\Users\\andi\\ws\\some.log") + "testbed/example.log") signal.signal(signal.SIGINT, stop_signal) signal.signal(signal.SIGTERM, stop_signal)