I did not touch the ~/.lein/profiles.clj file.
I got things to work by removing everything related to Timbre. I would
guess that I had some kind of naming class between Timbre and
clojure.tools.logging. I decided to just use clojure.tools.logging, and
that seems to have fixed the problem.
I'm wondering why this compiled?
I was supposed to add this to my requirements:
[environ.core :refer [env]]
Instead I added this:
[environ.core :refer [env]
I rebuilt this, and it compiled. Then, in the cider REPL, I tried to call
my "start" function. I was told it didn't exist, which was
If you can provide the entire file that compiled with the mistake in it,
that might help provide valuable context, especially if someone else can
reproduce it locally.
>From what you have described, if the only difference between two files is
that one has a ] and the other has that one character d
My guess would be that it failed to compile, and the weird behavior is that
it swallowed the "Failed" message somehow. That would be consistent with
the behavior you saw (couldn't call your start fn).
On Wed, Dec 26, 2018 at 11:59 AM wrote:
> I'm wondering why this compiled?
>
> I was supposed t