Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
6795e645
Commit
6795e645
authored
Apr 03, 2025
by
Ryan Olson
Committed by
GitHub
Apr 03, 2025
Browse files
fix: adding missing file (#501)
parent
7887ffd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
lib/bindings/python/src/dynamo/runtime/logging.py
lib/bindings/python/src/dynamo/runtime/logging.py
+55
-0
No files found.
lib/bindings/python/src/dynamo/runtime/logging.py
0 → 100644
View file @
6795e645
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
logging
from
dynamo._core
import
log_message
class
LogHandler
(
logging
.
Handler
):
"""
Custom logging handler that sends log messages to the Rust env_logger
"""
def
emit
(
self
,
record
):
"""
Emit a log record
"""
log_entry
=
self
.
format
(
record
)
if
record
.
funcName
==
"<module>"
:
module_path
=
record
.
module
else
:
module_path
=
f
"
{
record
.
module
}
.
{
record
.
funcName
}
"
log_message
(
record
.
levelname
.
lower
(),
log_entry
,
module_path
,
record
.
pathname
,
record
.
lineno
,
)
# Configure the Python logger to use the NimLogHandler
def
configure_logger
():
"""
Called once to configure the Python logger to use the LogHandler
"""
logger
=
logging
.
getLogger
()
logger
.
setLevel
(
logging
.
DEBUG
)
handler
=
LogHandler
()
# Simple formatter without date and level info since it's already provided by Rust
formatter
=
logging
.
Formatter
(
"%(message)s"
)
handler
.
setFormatter
(
formatter
)
logger
.
addHandler
(
handler
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment