Commit a0fb4184 authored by Guillaume Seguin's avatar Guillaume Seguin

Correct log target for Loading file messages in pronsole

parent 3d6bff88
......@@ -1096,7 +1096,7 @@ class pronsole(cmd.Cmd):
if not filename:
self.logError("No file name given.")
return
self.logError("Loading file: " + filename)
self.log("Loading file: " + filename)
if not os.path.exists(filename):
self.logError("File not found!")
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment