unilog icon indicating copy to clipboard operation
unilog copied to clipboard

easy logging setup in clojure

Results 3 unilog issues
Sort by recently updated
recently updated
newest added

Hello, I wanted to implement logback's async appender with unilog but not supported out of the box I found it tricky and had to copy a bunch of code. Can...

Hi, I'm not sure how to implement filter support as an extension on my side. The way I did it was to implement the `build-appender` and the `start-appender!` function for...

I'm currently trying to reproduce [this logback.xml configuration](https://github.com/papertrail/logback-syslog4j#logging-via-tcp-with-tls-recommended) using `build-appender`, here's what I have: ```clojure (require '[unilog.config :as unilog]) (import 'com.papertrailapp.logback.Syslog4jAppender) (import 'org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslogConfig) (import 'ch.qos.logback.classic.PatternLayout) (defmethod unilog/build-appender :papertrail [{:keys [host...

bug