├── .gitignore ├── README.md ├── agpl.txt ├── epl.html ├── pom.xml └── src ├── main └── clojure │ └── clj_logging_config │ ├── jul.clj │ └── log4j.clj └── test └── clojure ├── clj_logging_config └── log4j │ └── test_log4j.clj └── examples └── log4j_example.clj /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | lib/ 3 | /.lein-failures 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/README.md -------------------------------------------------------------------------------- /agpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/agpl.txt -------------------------------------------------------------------------------- /epl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/epl.html -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/clojure/clj_logging_config/jul.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/src/main/clojure/clj_logging_config/jul.clj -------------------------------------------------------------------------------- /src/main/clojure/clj_logging_config/log4j.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/src/main/clojure/clj_logging_config/log4j.clj -------------------------------------------------------------------------------- /src/test/clojure/clj_logging_config/log4j/test_log4j.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/src/test/clojure/clj_logging_config/log4j/test_log4j.clj -------------------------------------------------------------------------------- /src/test/clojure/examples/log4j_example.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malcolmsparks/clj-logging-config/HEAD/src/test/clojure/examples/log4j_example.clj --------------------------------------------------------------------------------