Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mypy/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,8 @@ def __init__(
self.plugin = plugin
self.plugins_snapshot = plugins_snapshot
self.old_plugins_snapshot = read_plugins_snapshot(self)
if self.verbosity() >= 2:
self.trace(f"Plugins snapshot (fresh) {json.dumps(self.plugins_snapshot)}")
self.quickstart_state = read_quickstart_file(options, self.stdout)
# Fine grained targets (module top levels and top level functions) processed by
# the semantic analyzer, used only for testing. Currently used only by the new
Expand Down Expand Up @@ -1355,7 +1357,7 @@ def read_plugins_snapshot(manager: BuildManager) -> dict[str, str] | None:
snapshot = _load_json_file(
PLUGIN_SNAPSHOT_FILE,
manager,
log_success="Plugins snapshot ",
log_success="Plugins snapshot (cached) ",
log_error="Could not load plugins snapshot: ",
)
if snapshot is None:
Expand Down