You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The __metaclass__ of the AbstractNode class does some magic to properly set the logger that is configured for AiiDA for all the sub classes, however it does not properly prepend it with aiida. This means that for sub classes that live outside of the aiida module, there module path will not match the aiida logger and the configured handlers and adapters will not be applied. As a result, for example, in JobCalculations that live in separate plugins, the DbLogHandler will not work as expected.
The text was updated successfully, but these errors were encountered:
The
__metaclass__
of theAbstractNode
class does some magic to properly set the logger that is configured for AiiDA for all the sub classes, however it does not properly prepend it withaiida
. This means that for sub classes that live outside of theaiida
module, there module path will not match theaiida
logger and the configured handlers and adapters will not be applied. As a result, for example, inJobCalculations
that live in separate plugins, theDbLogHandler
will not work as expected.The text was updated successfully, but these errors were encountered: