diff --git a/remlog b/remlog new file mode 100644 index 00000000..1c1eeaa3 --- /dev/null +++ b/remlog @@ -0,0 +1,11 @@ +vim src/mpfb/entities/rigging/righelpers/abstractrighelper.py +vim src/mpfb/ui/ai/operators/saveopenpose.py +vim src/mpfb/ui/ai/operators/boundingbox.py +vim src/mpfb/ui/makerig/operators/movetocube.py +vim src/mpfb/ui/makerig/operators/autotransferweights.py +vim src/mpfb/ui/developer/operators/setloglevel.py +vim src/mpfb/ui/makeup/makeuppanel.py +vim src/mpfb/ui/makeclothes/operators/gendelete.py +vim src/mpfb/ui/makeclothes/operators/bmxref.py +vim src/mpfb/ui/animops/operators/reduceddoll.py +vim src/mpfb/services/targetservice.py diff --git a/src/mpfb/entities/nodemodel/v2/materials/nodewrappergameengine.py b/src/mpfb/entities/nodemodel/v2/materials/nodewrappergameengine.py index d3f33dd0..3a8fdded 100644 --- a/src/mpfb/entities/nodemodel/v2/materials/nodewrappergameengine.py +++ b/src/mpfb/entities/nodemodel/v2/materials/nodewrappergameengine.py @@ -120,7 +120,6 @@ from .....services import LogService _LOG = LogService.get_logger("material.gameengine") -_LOG.set_level(LogService.DEBUG) class _NodeWrapperGameEngine(AbstractMaterialWrapper): diff --git a/src/mpfb/entities/rigging/righelpers/abstractrighelper.py b/src/mpfb/entities/rigging/righelpers/abstractrighelper.py index 934733a1..dd7f4677 100644 --- a/src/mpfb/entities/rigging/righelpers/abstractrighelper.py +++ b/src/mpfb/entities/rigging/righelpers/abstractrighelper.py @@ -4,7 +4,6 @@ from ....services import LogService _LOG = LogService.get_logger("abstractrighelper") -_LOG.set_level(LogService.DEBUG) class AbstractRigHelper(): """ diff --git a/src/mpfb/ui/ai/operators/boundingbox.py b/src/mpfb/ui/ai/operators/boundingbox.py index 752a8d84..87cf7a62 100644 --- a/src/mpfb/ui/ai/operators/boundingbox.py +++ b/src/mpfb/ui/ai/operators/boundingbox.py @@ -7,7 +7,6 @@ from mathutils import Vector, Matrix _LOG = LogService.get_logger("ai.operators.boundingbox") -_LOG.set_level(LogService.DEBUG) class MPFB_OT_Boundingbox_Operator(bpy.types.Operator): """Populate the bounding box settings from the active mesh object""" diff --git a/src/mpfb/ui/ai/operators/saveopenpose.py b/src/mpfb/ui/ai/operators/saveopenpose.py index 17a49200..9f169feb 100644 --- a/src/mpfb/ui/ai/operators/saveopenpose.py +++ b/src/mpfb/ui/ai/operators/saveopenpose.py @@ -11,7 +11,6 @@ from ._openposeconstants import COCO, LEFT_HAND, RIGHT_HAND _LOG = LogService.get_logger("ai.operators.saveopenpose") -_LOG.set_level(LogService.DEBUG) _CREATE_DEBUG_EMPTIES = False diff --git a/src/mpfb/ui/animops/operators/reduceddoll.py b/src/mpfb/ui/animops/operators/reduceddoll.py index 90736d0f..b6eac9bf 100644 --- a/src/mpfb/ui/animops/operators/reduceddoll.py +++ b/src/mpfb/ui/animops/operators/reduceddoll.py @@ -8,7 +8,6 @@ import bpy, math _LOG = LogService.get_logger("animops.reduceddoll") -_LOG.set_level(LogService.DEBUG) class MPFB_OT_Reduced_Doll_Operator(MpfbOperator): """Create a reduced copy of the character. The copy will have all clothes and body parts removed, the the helper geometry deleted and all shape keys baked""" diff --git a/src/mpfb/ui/makeclothes/operators/bmxref.py b/src/mpfb/ui/makeclothes/operators/bmxref.py index 3022d069..cb27029c 100644 --- a/src/mpfb/ui/makeclothes/operators/bmxref.py +++ b/src/mpfb/ui/makeclothes/operators/bmxref.py @@ -10,7 +10,6 @@ from .... import ClassManager _LOG = LogService.get_logger("makeclothes.basemesh_xref") -_LOG.set_level(LogService.DEBUG) class MPFB_OT_BasemeshXrefOperator(bpy.types.Operator): """Create a cache with cross-reference tables for the base mesh. This is generic for all base meshes, irregardless of shape and normally only needs to be done once. Note that this can take a long time, up towards 30 seconds""" diff --git a/src/mpfb/ui/makeclothes/operators/gendelete.py b/src/mpfb/ui/makeclothes/operators/gendelete.py index 3aadafd3..a6e0046c 100644 --- a/src/mpfb/ui/makeclothes/operators/gendelete.py +++ b/src/mpfb/ui/makeclothes/operators/gendelete.py @@ -13,7 +13,6 @@ from .... import ClassManager _LOG = LogService.get_logger("makeclothes.gendelete") -_LOG.set_level(LogService.DEBUG) class MPFB_OT_GenDeleteOperator(bpy.types.Operator): diff --git a/src/mpfb/ui/makerig/operators/autotransferweights.py b/src/mpfb/ui/makerig/operators/autotransferweights.py index 5c4f81cb..be2dc170 100644 --- a/src/mpfb/ui/makerig/operators/autotransferweights.py +++ b/src/mpfb/ui/makerig/operators/autotransferweights.py @@ -8,7 +8,6 @@ import bpy, math _LOG = LogService.get_logger("makerig.autotransferweights") -_LOG.set_level(LogService.DEBUG) MAX_DIST = 0.001 diff --git a/src/mpfb/ui/makerig/operators/movetocube.py b/src/mpfb/ui/makerig/operators/movetocube.py index 64a53251..13605aa8 100644 --- a/src/mpfb/ui/makerig/operators/movetocube.py +++ b/src/mpfb/ui/makerig/operators/movetocube.py @@ -7,7 +7,6 @@ import bpy, math _LOG = LogService.get_logger("makerig.movetocube") -_LOG.set_level(LogService.DEBUG) _CUBE_CENTER_CACHE = {} diff --git a/src/mpfb/ui/makeup/makeuppanel.py b/src/mpfb/ui/makeup/makeuppanel.py index 0aeea3be..2f3f970b 100644 --- a/src/mpfb/ui/makeup/makeuppanel.py +++ b/src/mpfb/ui/makeup/makeuppanel.py @@ -11,7 +11,6 @@ import os _LOG = LogService.get_logger("ui.makeuppanel") -_LOG.set_level(LogService.DEBUG) _LOC = os.path.dirname(__file__) MAKEUP_PROPERTIES_DIR = os.path.join(_LOC, "properties")