Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xapplication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.py b/application.py
index c50b69f..376cfd3 100755
--- a/application.py
+++ b/application.py
@@ -240,7 +240,7 @@ class Application(gtk.Window):
if __name__ == '__main__':
- logger.debug('Initializing Graph Plotter')
+ logger.debug('Initializing %s' % info.name)
import sys
if info.io_mode == info.DOCUMENT:
if len(sys.argv) > 1:
@@ -263,5 +263,5 @@ if __name__ == '__main__':
window.file_path = file_path
window.show()
gtk.main()
- logger.debug('Closing Graph Plotter')
+ logger.debug('Closing %s' % info.name)
exit()