removing logging

This commit is contained in:
Jakub Jezek 2022-10-27 15:12:03 +02:00
parent 95bf35b6fa
commit a16d7c95b7
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
4 changed files with 0 additions and 8 deletions

View file

@ -62,5 +62,3 @@ class CreateCamera(NukeCreator):
NukeCreatorError("Creator error: Select only one camera node")
else:
self.selected_nodes = []
self.log.debug("Selection is: {}".format(self.selected_nodes))

View file

@ -63,5 +63,3 @@ class CreateModel(NukeCreator):
NukeCreatorError("Creator error: Select only one camera node")
else:
self.selected_nodes = []
self.log.debug("Selection is: {}".format(self.selected_nodes))

View file

@ -89,5 +89,3 @@ class CreateSource(NukeCreator):
else:
NukeCreatorError(
"Creator error: only supprted with active selection")
self.log.debug("Selection is: {}".format(self.selected_nodes))

View file

@ -22,7 +22,6 @@ class WorkfileCreator(AutoCreator):
instance_data = api.get_node_data(
root_node, api.INSTANCE_DATA_KNOB
)
self.log.debug("__ instance_data: {}".format(instance_data))
project_name = legacy_io.Session["AVALON_PROJECT"]
asset_name = legacy_io.Session["AVALON_ASSET"]
@ -34,7 +33,6 @@ class WorkfileCreator(AutoCreator):
self.default_variant, task_name, asset_doc,
project_name, host_name
)
self.log.debug("__ subset_name: {}".format(subset_name))
instance_data.update({
"asset": asset_name,
"task": task_name,