Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ private TopComponent getTopComponentPersistentForID(String stringId, boolean des
private final Set<String> warnedIDs = Collections.synchronizedSet(new HashSet<>());
/** Avoid printing dozens of warnings about the same ID in one IDE session. */
private Level warningLevelForDeserTC(String id) {
return warnedIDs.add(id) ? Level.WARNING : Level.FINE;
return warnedIDs.add(id) ? Level.INFO : Level.FINE;
}

/** @return Searches for TopComponent with given string id and returns
Expand Down
Loading