Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools.logging aot issue #69

Closed
kul opened this issue Sep 24, 2014 · 2 comments
Closed

tools.logging aot issue #69

kul opened this issue Sep 24, 2014 · 2 comments
Labels

Comments

@kul
Copy link

kul commented Sep 24, 2014

This is a weird issue! I am not sure everyone can reproduce but if i use autin in a project, tool.logging's impl records do not get compiled! causing a failure in even require or use. i.e. java.lang.NoClassDefFoundError: clojure/tools/logging/impl/LoggerFactory.
Now just comment the plugins line and everything works.

(defproject bug "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.5.1"]
                 [org.clojure/tools.logging "0.3.1"]]
  :plugins [[com.cemerick/austin "0.1.5"]]
  :aot [bug.core])
(ns bug.core
  (:require [clojure.tools.logging :as log]))

(defn -main []
  (log/info "foo"))
@Bronsa
Copy link

Bronsa commented Sep 24, 2014

Might be related to #23

@cemerick
Copy link
Owner

Yup, same issue. @kul, please track #23, and its upstream cause.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants