Skip to content

Commit 79edf25

Browse files
mhdawsontargos
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 801fe30 commit 79edf25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/env.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1580,11 +1580,11 @@ void Environment::PrintInfoForSnapshotIfDebug() {
15801580
if (enabled_debug_list()->enabled(DebugCategory::MKSNAPSHOT)) {
15811581
fprintf(stderr, "At the exit of the Environment:\n");
15821582
principal_realm()->PrintInfoForSnapshot();
1583-
fprintf(stderr, "\nNative modules without cache:\n");
1583+
fprintf(stderr, "\nBuiltins without cache:\n");
15841584
for (const auto& s : builtins_without_cache) {
15851585
fprintf(stderr, "%s\n", s.c_str());
15861586
}
1587-
fprintf(stderr, "\nNative modules with cache:\n");
1587+
fprintf(stderr, "\nBuiltins with cache:\n");
15881588
for (const auto& s : builtins_with_cache) {
15891589
fprintf(stderr, "%s\n", s.c_str());
15901590
}

0 commit comments

Comments
 (0)