Show More
@@ -521,10 +521,12 b' class Application(SingletonConfigurable):' | |||
|
521 | 521 | # unlikely event that the error raised before filefind finished |
|
522 | 522 | filename = loader.full_filename or filename |
|
523 | 523 | # problem while running the file |
|
524 | log.error("Exception while loading config file %s", | |
|
525 | filename, exc_info=True) | |
|
524 | if log: | |
|
525 | log.error("Exception while loading config file %s", | |
|
526 | filename, exc_info=True) | |
|
526 | 527 | else: |
|
527 | log.debug("Loaded config file: %s", loader.full_filename) | |
|
528 | if log: | |
|
529 | log.debug("Loaded config file: %s", loader.full_filename) | |
|
528 | 530 | if config: |
|
529 | 531 | yield config |
|
530 | 532 |
General Comments 0
You need to be logged in to leave comments.
Login now