Skip to content

Commit 2dced39

Browse files
committed
refactor(logging): remove unnecessary logging in RenameLookupManagerListener
Removed the logger statement that was outputting the intermediate result string in RenameLookupManagerListener. This change aims to reduce log verbosity and avoid printing non-essential information.
1 parent b53510b commit 2dced39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/cc/unitmesh/devti/practise/RenameLookupManagerListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class RenameLookupManagerListener(val project: Project) : LookupManagerListener
6464
sb.append(it)
6565
}
6666
val result = sb.toString()
67-
logger.info("result: $result")
67+
6868
extractSuggestionsFromString(result).filter {
6969
// since AI could not do well in math, like 5 results, we should filter it
7070
it.isNotBlank() && !it.contains(" ")

0 commit comments

Comments
 (0)