Skip to content

Commit

Permalink
Remove explicit log level overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
joepal1976 committed Jan 25, 2025
1 parent 0163eee commit fc43cd5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 10 deletions.
11 changes: 11 additions & 0 deletions remlog
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@

from .....services import LogService
_LOG = LogService.get_logger("material.gameengine")
_LOG.set_level(LogService.DEBUG)


class _NodeWrapperGameEngine(AbstractMaterialWrapper):
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/entities/rigging/righelpers/abstractrighelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from ....services import LogService
_LOG = LogService.get_logger("abstractrighelper")
_LOG.set_level(LogService.DEBUG)

class AbstractRigHelper():
"""
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/ai/operators/boundingbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/ai/operators/saveopenpose.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/animops/operators/reduceddoll.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/makeclothes/operators/bmxref.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/makeclothes/operators/gendelete.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/makerig/operators/autotransferweights.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import bpy, math

_LOG = LogService.get_logger("makerig.autotransferweights")
_LOG.set_level(LogService.DEBUG)

MAX_DIST = 0.001

Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/makerig/operators/movetocube.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import bpy, math

_LOG = LogService.get_logger("makerig.movetocube")
_LOG.set_level(LogService.DEBUG)

_CUBE_CENTER_CACHE = {}

Expand Down
1 change: 0 additions & 1 deletion src/mpfb/ui/makeup/makeuppanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit fc43cd5

Please sign in to comment.