mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
change info to debug
This commit is contained in:
parent
15532b06c5
commit
eb28f19fcf
1 changed files with 2 additions and 4 deletions
|
|
@ -32,7 +32,7 @@ class ExtractTyCache(publish.Extractor):
|
||||||
# TODO: let user decide the param
|
# TODO: let user decide the param
|
||||||
start = int(instance.context.data["frameStart"])
|
start = int(instance.context.data["frameStart"])
|
||||||
end = int(instance.context.data.get("frameEnd"))
|
end = int(instance.context.data.get("frameEnd"))
|
||||||
self.log.info("Extracting Tycache...")
|
self.log.debug("Extracting Tycache...")
|
||||||
|
|
||||||
stagingdir = self.staging_dir(instance)
|
stagingdir = self.staging_dir(instance)
|
||||||
filename = "{name}.tyc".format(**instance.data)
|
filename = "{name}.tyc".format(**instance.data)
|
||||||
|
|
@ -55,7 +55,6 @@ class ExtractTyCache(publish.Extractor):
|
||||||
"stagingDir": stagingdir,
|
"stagingDir": stagingdir,
|
||||||
}
|
}
|
||||||
representations.append(representation)
|
representations.append(representation)
|
||||||
self.log.info(f"Extracted instance '{instance.name}' to: {filenames}")
|
|
||||||
|
|
||||||
# Get the tyMesh filename for extraction
|
# Get the tyMesh filename for extraction
|
||||||
mesh_filename = f"{instance.name}__tyMesh.tyc"
|
mesh_filename = f"{instance.name}__tyMesh.tyc"
|
||||||
|
|
@ -67,8 +66,7 @@ class ExtractTyCache(publish.Extractor):
|
||||||
"outputName": '__tyMesh'
|
"outputName": '__tyMesh'
|
||||||
}
|
}
|
||||||
representations.append(mesh_repres)
|
representations.append(mesh_repres)
|
||||||
self.log.info(
|
self.log.debug(f"Extracted instance '{instance.name}' to: {filenames}")
|
||||||
f"Extracted instance '{instance.name}' to: {mesh_filename}")
|
|
||||||
|
|
||||||
def get_files(self, instance, start_frame, end_frame):
|
def get_files(self, instance, start_frame, end_frame):
|
||||||
"""Get file names for tyFlow in tyCache format.
|
"""Get file names for tyFlow in tyCache format.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue