aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/utils
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2022-07-08 16:47:11 +0200
committerGitHub <noreply@github.com>2022-07-08 16:47:11 +0200
commit0cdb6d4de754ef5381de09be55ebdafa6868caca (patch)
treed3d742e66df4776ffd3aeb584b3b57d5709a3130 /plugins/base/src/main/kotlin/utils
parent393491918eb31fd1896c747e636965f917754b1b (diff)
downloaddokka-0cdb6d4de754ef5381de09be55ebdafa6868caca.tar.gz
dokka-0cdb6d4de754ef5381de09be55ebdafa6868caca.tar.bz2
dokka-0cdb6d4de754ef5381de09be55ebdafa6868caca.zip
Ignore messages emitted by the IntelliJ Logger (#2563)
Diffstat (limited to 'plugins/base/src/main/kotlin/utils')
-rw-r--r--plugins/base/src/main/kotlin/utils/NoopIntellijLogger.kt43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/base/src/main/kotlin/utils/NoopIntellijLogger.kt b/plugins/base/src/main/kotlin/utils/NoopIntellijLogger.kt
new file mode 100644
index 00000000..9248f996
--- /dev/null
+++ b/plugins/base/src/main/kotlin/utils/NoopIntellijLogger.kt
@@ -0,0 +1,43 @@
+package org.jetbrains.dokka.base.utils
+
+import com.intellij.openapi.diagnostic.Attachment
+import com.intellij.openapi.diagnostic.DefaultLogger
+import com.intellij.openapi.diagnostic.Logger
+
+internal class NoopIntellijLoggerFactory : Logger.Factory {
+ override fun getLoggerInstance(p0: String): Logger = NoopIntellijLogger
+}
+
+/**
+ * Ignores all messages passed to it
+ */
+internal object NoopIntellijLogger : DefaultLogger(null) {
+ override fun isDebugEnabled(): Boolean = false
+ override fun isTraceEnabled(): Boolean = false
+
+ override fun debug(message: String?) {}
+ override fun debug(t: Throwable?) {}
+ override fun debug(message: String?, t: Throwable?) {}
+ override fun debug(message: String, vararg details: Any?) {}
+ override fun debugValues(header: String, values: MutableCollection<*>) {}
+
+ override fun trace(message: String?) {}
+ override fun trace(t: Throwable?) {}
+
+ override fun info(message: String?) {}
+ override fun info(message: String?, t: Throwable?) {}
+ override fun info(t: Throwable) {}
+
+ override fun warn(message: String?, t: Throwable?) {}
+ override fun warn(message: String?) {}
+ override fun warn(t: Throwable) {}
+
+ override fun error(message: String?, t: Throwable?, vararg details: String?) {}
+ override fun error(message: String?) {}
+ override fun error(message: Any?) {}
+ override fun error(message: String?, vararg attachments: Attachment?) {}
+ override fun error(message: String?, t: Throwable?, vararg attachments: Attachment?) {}
+ override fun error(message: String?, vararg details: String?) {}
+ override fun error(message: String?, t: Throwable?) {}
+ override fun error(t: Throwable) {}
+}