Skip to content

Commit

Permalink
warn when easyblock import failed and fallback to Application class i…
Browse files Browse the repository at this point in the history
…s done
  • Loading branch information
boegel committed Aug 27, 2012
1 parent f977613 commit 568e3aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easybuild/framework/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1589,8 +1589,8 @@ def get_class(easyblock, log, name=None):
except ImportError, err:
# No easyblock could be found, so fall back to default class.

log.debug("Failed to import easyblock for %s, falling back to default %s class: erro: %s" % \
(class_name, app_mod_class, err))
log.warning("Failed to import easyblock for %s, falling back to default %s class: erro: %s" % \
(class_name, app_mod_class, err))
(modulepath, class_name) = app_mod_class
# If Application was specified, use the framework namespace
elif easyblock == "Application":
Expand Down

0 comments on commit 568e3aa

Please sign in to comment.