Skip to content

Commit 6432b76

Browse files
committed
refactor: logging
1 parent e684e80 commit 6432b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marker/src/main/kotlin/spp/jetbrains/marker/SourceMarker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class SourceMarker(private val project: Project) {
101101
log.warn("File type not supported: ${psiFile.fileType.name}")
102102
return null
103103
} else if (psiFile.virtualFile == null || !psiFile.virtualFile.isInLocalFileSystem) {
104-
log.warn("Skipping in-memory/non-local file: ${psiFile.virtualFile}")
104+
log.warn("Skipping in-memory/non-local file: $psiFile")
105105
return null
106106
} else if (!SourceStatusService.getInstance(project).isConnected()) {
107107
log.warn("Not connected, skipping source file marker creation for: $psiFile")

0 commit comments

Comments
 (0)