mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-26 09:52:34 +00:00
22 lines
562 B
Python
22 lines
562 B
Python
from typing import *
|
|
|
|
|
|
# rust/src/micropython/logging.rs
|
|
def debug(name: str, msg: str, *args: Any, *, iface: WireInterface | None = None) -> None:
|
|
...
|
|
|
|
|
|
# rust/src/micropython/logging.rs
|
|
def info(name: str, msg: str, *args: Any, *, iface: WireInterface | None = None) -> None:
|
|
...
|
|
|
|
|
|
# rust/src/micropython/logging.rs
|
|
def warning(name: str, msg: str, *args: Any, *, iface: WireInterface | None = None) -> None:
|
|
...
|
|
|
|
|
|
# rust/src/micropython/logging.rs
|
|
def error(name: str, msg: str, *args: Any, *, iface: WireInterface | None = None) -> None:
|
|
...
|