diff --git a/plugins/git4idea/src/git4idea/GitApplyChangesProcess.kt b/plugins/git4idea/src/git4idea/GitApplyChangesProcess.kt index 7854640a2202..7f345cf4a42e 100644 --- a/plugins/git4idea/src/git4idea/GitApplyChangesProcess.kt +++ b/plugins/git4idea/src/git4idea/GitApplyChangesProcess.kt @@ -199,7 +199,8 @@ class GitApplyChangesProcess(private val project: Project, } val changes = actualList.changes if (changes.isEmpty()) { - LOG.debug("No changes in the $actualList. All changes in the CLM: ${changeListManager.allChanges}") + val changesString = changeListManager.changeLists.map { it -> "[${it.name}] ${it.changes}" } + LOG.debug("No changes in the $actualList. All changes in the CLM: $changesString") alreadyPicked.add(commit) return true }