Skip to content

Commit

Permalink
src: cleanup on disambiguating native modules
Browse files Browse the repository at this point in the history
Found while backporting
nodejs#45663

Fixup one rename missed

Signed-off-by: Michael Dawson <[email protected]>
  • Loading branch information
mhdawson committed Nov 28, 2022
1 parent ed3604c commit 1f7e71f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1581,11 +1581,11 @@ void Environment::PrintInfoForSnapshotIfDebug() {
if (enabled_debug_list()->enabled(DebugCategory::MKSNAPSHOT)) {
fprintf(stderr, "At the exit of the Environment:\n");
principal_realm()->PrintInfoForSnapshot();
fprintf(stderr, "\nNative modules without cache:\n");
fprintf(stderr, "\nBuiltins without cache:\n");
for (const auto& s : builtins_without_cache) {
fprintf(stderr, "%s\n", s.c_str());
}
fprintf(stderr, "\nNative modules with cache:\n");
fprintf(stderr, "\nBuiltins modules with cache:\n");
for (const auto& s : builtins_with_cache) {
fprintf(stderr, "%s\n", s.c_str());
}
Expand Down

0 comments on commit 1f7e71f

Please sign in to comment.