Skip to content

Commit afe45d4

Browse files
mhdawsondanielleadams
authored andcommitted
src: cleanup on disambiguating native modules
Found while backporting #45663 Fixup one rename missed Signed-off-by: Michael Dawson <[email protected]> PR-URL: #45665 Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 772046c commit afe45d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/env.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,11 +1578,11 @@ void Environment::PrintInfoForSnapshotIfDebug() {
15781578
if (enabled_debug_list()->enabled(DebugCategory::MKSNAPSHOT)) {
15791579
fprintf(stderr, "At the exit of the Environment:\n");
15801580
principal_realm()->PrintInfoForSnapshot();
1581-
fprintf(stderr, "\nNative modules without cache:\n");
1581+
fprintf(stderr, "\nBuiltins without cache:\n");
15821582
for (const auto& s : builtins_without_cache) {
15831583
fprintf(stderr, "%s\n", s.c_str());
15841584
}
1585-
fprintf(stderr, "\nNative modules with cache:\n");
1585+
fprintf(stderr, "\nBuiltins with cache:\n");
15861586
for (const auto& s : builtins_with_cache) {
15871587
fprintf(stderr, "%s\n", s.c_str());
15881588
}

0 commit comments

Comments
 (0)