Skip to content

Commit 566b82c

Browse files
committed
more CI fixes
1 parent 351b6a1 commit 566b82c

File tree

1 file changed

+2
-1
lines changed
  • plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/toolwindow

1 file changed

+2
-1
lines changed

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/toolwindow/AmazonQPanel.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import kotlinx.coroutines.CoroutineScope
2020
import kotlinx.coroutines.flow.first
2121
import kotlinx.coroutines.launch
2222
import kotlinx.coroutines.withContext
23+
import software.aws.toolkits.core.utils.error
2324
import software.aws.toolkits.core.utils.getLogger
2425
import software.aws.toolkits.jetbrains.core.coroutines.EDT
2526
import software.aws.toolkits.jetbrains.isDeveloperMode
@@ -183,7 +184,7 @@ class AmazonQPanel(val project: Project, private val scope: CoroutineScope) : Di
183184
dtde.dropComplete(false)
184185
}
185186
} catch (e: Exception) {
186-
LOG.error("Failed to handle file drop operation", e.message)
187+
LOG.error { "Failed to handle file drop operation: ${e.message}" }
187188
dtde.dropComplete(false)
188189
}
189190
}

0 commit comments

Comments
 (0)