Skip to content

Commit 4b92ff5

Browse files
committed
log: remove warning
1 parent d4d50a3 commit 4b92ff5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vm/src/dictdatatype.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,10 +253,8 @@ impl<T: Clone> Dict<T> {
253253
} else {
254254
// The dict was changed since we did lookup. Let's try again.
255255
// this is very rare to happen
256-
// (and seems only happen with very high freq gc, and about three to four time in 200000 iters)
256+
// (and seems only happen with very high freq gc, and about one time in 10000 iters)
257257
// but still possible
258-
// so logging a warn is acceptable in here
259-
warn!("The dict was changed since we did lookup. Let's try again.");
260258
continue;
261259
};
262260
if entry.index == index_index {

0 commit comments

Comments
 (0)