MCPcopy Index your code
hub / github.com/python/mypy / log_fine_grained

Method log_fine_grained

mypy/build.py:1345–1354  ·  view source on GitHub ↗
(self, *message: str)

Source from the content-addressed store, hash-verified

1343 self.stderr.flush()
1344
1345 def log_fine_grained(self, *message: str) -> None:
1346 if self.verbosity() >= 1:
1347 self.log("fine-grained:", *message)
1348 elif mypy.build.DEBUG_FINE_GRAINED:
1349 # Output log in a simplified format that is quick to browse.
1350 if message:
1351 print(*message, file=self.stderr)
1352 else:
1353 print(file=self.stderr)
1354 self.stderr.flush()
1355
1356 def trace(self, *message: str) -> None:
1357 if self.verbosity() >= 2:

Callers 10

updateMethod · 0.80
update_oneMethod · 0.80
update_moduleMethod · 0.80
ensure_trees_loadedFunction · 0.80
update_module_isolatedFunction · 0.80
delete_moduleFunction · 0.80
find_targets_recursiveFunction · 0.80
reprocess_nodesFunction · 0.80
not_foundFunction · 0.80

Calls 4

verbosityMethod · 0.95
logMethod · 0.95
printFunction · 0.85
flushMethod · 0.45

Tested by

no test coverage detected