Skip to content

Commit 82bead2

Browse files
committed
perf: add custom logging level
1 parent 0337800 commit 82bead2

9 files changed

+56
-7
lines changed

brickllm/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from .configs import GraphConfig
2+
from .logger import custom_logger
23
from .schemas import (
34
ElemListSchema,
45
RelationshipsSchema,
@@ -15,4 +16,5 @@
1516
"State",
1617
"StateLocal",
1718
"GraphConfig",
19+
"custom_logger",
1820
]

brickllm/logger.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import logging
2+
3+
# Create custom log level
4+
EURAC_LEVEL = 25
5+
logging.addLevelName(EURAC_LEVEL, "EURAC")
6+
7+
8+
def eurac(self, message, *args, **kwargs):
9+
"""
10+
Log with custom EURAC level
11+
"""
12+
if self.isEnabledFor(EURAC_LEVEL):
13+
self._log(EURAC_LEVEL, message, args, **kwargs)
14+
15+
16+
# Add eurac method to Logger class
17+
logging.Logger.eurac = eurac
18+
19+
20+
# Create and configure logger
21+
def get_logger(name="BrickLLM"):
22+
logger = logging.getLogger(name)
23+
24+
# Create handler if none exists
25+
if not logger.handlers:
26+
handler = logging.StreamHandler()
27+
formatter = logging.Formatter(
28+
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
29+
)
30+
handler.setFormatter(formatter)
31+
logger.addHandler(handler)
32+
33+
logger.setLevel(EURAC_LEVEL)
34+
return logger
35+
36+
37+
# Create default logger instance
38+
custom_logger = get_logger()

brickllm/nodes/generation_local.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from .. import StateLocal
44
from ..helpers import prompt_template_local
5+
from ..logger import custom_logger
56
from ..utils import extract_rdf_graph
67

78

@@ -17,7 +18,7 @@ def generation_local(state: StateLocal, config: Dict[str, Any]) -> Dict[str, Any
1718
dict: A dictionary containing the output generated.
1819
"""
1920

20-
print("---One shot generation with local LLM Node---")
21+
custom_logger.eurac("🤖 Starting one shot generation with local LLM")
2122

2223
instructions = state["instructions"]
2324
user_prompt = state["user_prompt"]

brickllm/nodes/get_elem_children.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from .. import ElemListSchema, State
66
from ..helpers import get_elem_children_instructions
7+
from ..logger import custom_logger
78
from ..utils import create_hierarchical_dict, filter_elements, get_children_hierarchy
89

910

@@ -18,7 +19,9 @@ def get_elem_children(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
1819
Returns:
1920
dict: A dictionary containing the hierarchical structure of identified elements.
2021
"""
21-
print("---Get Elem Children Node---")
22+
custom_logger.eurac(
23+
"📊 Getting children for each BrickSchema category in the element list"
24+
)
2225

2326
user_prompt = state["user_prompt"]
2427
categories = state["elem_list"]

brickllm/nodes/get_elements.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from .. import ElemListSchema, State
66
from ..helpers import get_elem_instructions
7+
from ..logger import custom_logger
78
from ..utils import get_brick_definition, get_hierarchical_info
89

910

@@ -19,7 +20,7 @@ def get_elements(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
1920
Returns:
2021
dict: A dictionary containing the list of identified elements.
2122
"""
22-
print("---Get Elements Node---")
23+
custom_logger.eurac("🔍 Getting elements from user prompt")
2324

2425
user_prompt = state["user_prompt"]
2526

brickllm/nodes/get_relationships.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
from .. import RelationshipsSchema, State
88
from ..helpers import get_relationships_instructions
9+
from ..logger import custom_logger
910
from ..utils import build_hierarchy, find_sensor_paths
1011

1112

@@ -20,7 +21,7 @@ def get_relationships(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
2021
Returns:
2122
dict: A dictionary containing the grouped sensor paths.
2223
"""
23-
print("---Get Relationships Node---")
24+
custom_logger.eurac("🔗 Getting relationships between building components")
2425

2526
user_prompt = state["user_prompt"]
2627
building_structure = state["elem_hierarchy"]

brickllm/nodes/get_sensors.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from typing import Any, Dict
22

33
from .. import State
4+
from ..logger import custom_logger
45

56

67
def get_sensors(state: State) -> Dict[str, Any]:
@@ -13,7 +14,7 @@ def get_sensors(state: State) -> Dict[str, Any]:
1314
Returns:
1415
dict: A dictionary containing sensor UUIDs mapped to their locations.
1516
"""
16-
print("---Get Sensor Node---")
17+
custom_logger.eurac("📡 Getting sensors information")
1718

1819
uuid_dict = {
1920
"Building#1>Floor#1>Office#1>Room#1": [

brickllm/nodes/schema_to_ttl.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from .. import State, TTLSchema
77
from ..helpers import schema_to_ttl_instructions, ttl_example
8+
from ..logger import custom_logger
89

910

1011
def schema_to_ttl(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
@@ -18,7 +19,7 @@ def schema_to_ttl(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
1819
Returns:
1920
dict: A dictionary containing the generated TTL output.
2021
"""
21-
print("---Schema To TTL Node---")
22+
custom_logger.eurac("📝 Generating TTL from schema")
2223

2324
user_prompt = state["user_prompt"]
2425
sensors_dict = state["sensors_dict"]

brickllm/nodes/validate_schema.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from typing import Any, Dict
22

3+
from ..logger import custom_logger
34
from ..utils import validate_ttl
45

56

@@ -13,7 +14,7 @@ def validate_schema(state) -> Dict[str, Any]:
1314
Returns:
1415
dict: A dictionary containing the validation status and report.
1516
"""
16-
print("---Validate Schema Node---")
17+
custom_logger.eurac("✅ Validating TTL schema")
1718

1819
ttl_output = state.get("ttl_output", None)
1920
max_iter = state.get("validation_max_iter", 2)

0 commit comments

Comments
 (0)