Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vm/builtin/object.cpp
Original file line number Diff line number Diff line change
@@ -137,7 +137,10 @@ namespace rubinius {
} else if(CompactLookupTable* clt = try_as<CompactLookupTable>(other->ivars())) {
ivars(state, clt->duplicate(state));
} else {
utilities::logger::warn("Object::copy_object: invalid ivars_ reference");
utilities::logger::warn(
"Object::copy_object: invalid ivars_ reference for %s",
other->class_object(state)->to_string(state, true).c_str()
);
};
}

0 comments on commit 87f22db

Please sign in to comment.