Use logger warn instead of TODO()

This commit is contained in:
Jakub Chrzanowski 2023-03-03 17:13:51 +01:00 committed by Jakub Chrzanowski
parent f57d76c64c
commit 5bda710503

View File

@ -6,9 +6,6 @@ import com.intellij.openapi.diagnostic.thisLogger
internal class MyFrameStateListener : FrameStateListener {
override fun onFrameActivated() {
thisLogger().info("Frame activated")
System.getenv("CI")
?: TODO("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
thisLogger().warn("Don't forget to remove all non-needed sample code files with their corresponding registration entries in `plugin.xml`.")
}
}