Skip to content

Commit

Permalink
-define logger
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonRubenDrauz committed Nov 7, 2024
1 parent 8604b86 commit b36f558
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pandapipes/component_models/heat_consumer_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
from pandapipes.pf.result_extraction import extract_branch_results_without_internals
from pandapipes.properties.properties_toolbox import get_branch_cp

try:
import pandaplan.core.pplog as logging
except ImportError:
import logging

logger = logging.getLogger(__name__)

class HeatConsumer(BranchWZeroLengthComponent):
"""
Expand Down

0 comments on commit b36f558

Please sign in to comment.