diff --git a/GlobifestLib/Importer.py b/GlobifestLib/Importer.py index 8ca431a..a161347 100644 --- a/GlobifestLib/Importer.py +++ b/GlobifestLib/Importer.py @@ -411,4 +411,5 @@ def setup(self, out_dir): inputs = [] for a in self.actions: inputs = a.run(self, inputs) + Log.D(" => {}".format(inputs)) _SetupCompleteAction(cache_file_contents).run(self) diff --git a/waf/globitool.py b/waf/globitool.py index 9480942..6d2f51f 100644 --- a/waf/globitool.py +++ b/waf/globitool.py @@ -78,6 +78,8 @@ def __init__(self, bld, kwargs): def run(self): """Build the project configuration and add taskgens""" + Globitool.GlobifestLib.Log.Logger.set_level(Logs.verbose) + # Set up callbacks for Builder callbacks = Globitool.GlobifestLib.Util.Container( prebuild=Globitool._callback_prebuild,