We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e75de1 commit 03e17e5Copy full SHA for 03e17e5
vm.c
@@ -2307,6 +2307,7 @@ rb_get_method_state_version()
2307
void
2308
rb_inc_method_state_version()
2309
{
2310
+ fprintf(stderr, "GLOBAL METHOD CACHE INVALIDATION at %s:%d\n", rb_sourcefile(), rb_sourceline());
2311
ruby_method_global_state_version++;
2312
}
2313
@@ -2319,6 +2320,7 @@ rb_get_constant_state_version()
2319
2320
2321
rb_inc_constant_state_version()
2322
2323
+ fprintf(stderr, "GLOBAL CONSTANT CACHE INVALIDATION at %s:%d\n", rb_sourcefile(), rb_sourceline());
2324
ruby_constant_global_state_version++;
2325
2326
0 commit comments