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 e684e80 commit 6432b76Copy full SHA for 6432b76
marker/src/main/kotlin/spp/jetbrains/marker/SourceMarker.kt
@@ -101,7 +101,7 @@ class SourceMarker(private val project: Project) {
101
log.warn("File type not supported: ${psiFile.fileType.name}")
102
return null
103
} else if (psiFile.virtualFile == null || !psiFile.virtualFile.isInLocalFileSystem) {
104
- log.warn("Skipping in-memory/non-local file: ${psiFile.virtualFile}")
+ log.warn("Skipping in-memory/non-local file: $psiFile")
105
106
} else if (!SourceStatusService.getInstance(project).isConnected()) {
107
log.warn("Not connected, skipping source file marker creation for: $psiFile")
0 commit comments