MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / log_info

Function log_info

python/log.py:81–95  ·  view source on GitHub ↗

``log_info`` Logs general information messages to the console. :param str text: message to print :rtype: None :Example: >>> log_info("Saucisson!") Saucisson! >>>

(text: Any, logger: str = "")

Source from the content-addressed store, hash-verified

79
80
81def log_info(text: Any, logger: str = ""):
82 """
83 ``log_info`` Logs general information messages to the console.
84
85 :param str text: message to print
86 :rtype: None
87 :Example:
88
89 >>> log_info("Saucisson!")
90 Saucisson!
91 >>>
92 """
93 if not isinstance(text, str):
94 text = str(text)
95 core.BNLogString(0, LogLevel.InfoLog, logger, threading.current_thread().ident, text)
96
97
98def log_warn(text: Any, logger: str = ""):

Callers 5

is_valid_for_dataMethod · 0.90
initMethod · 0.90
iterateFunction · 0.90
upload_new_fileMethod · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected