override fun describeParameters()

in src/main/kotlin/jetbrains/buildServer/notification/slackNotifier/BuildTypeSlackNotifierDescriptor.kt [25:32]


    override fun describeParameters(parameters: MutableMap<String, String>): String {
        val to = parameters[SlackProperties.channelProperty.key]
        if (to != null) {
            return "To: $to"
        }

        return ""
    }