Malcolm Sparks

Results 84 comments of Malcolm Sparks

You should set a root logger. Every namespace inherits from its parent logger if it doesn't have its own one. Does this answer your question?

Yes, a number of people have asked for that, including myself! It's used by the Pedestal framework too, so I'm sure I'll get round to it soon, but contributions would...

It looks wrong to me as well, it would be clearer if the key was :appender-name but there may be some backward compatibility issue with existing code if we changed...

What about a mechanism for injecting a partial function that would be mapped across the sequence of terminals generated by a given production? I'm not sure how you'd implement this,...

This paper discusses an approach to the indentation problem http://michaeldadams.org/papers/layout_parsing/LayoutParsing.pdf

Makes sense to make user extensions fit with sensible areas the user wants to specify, rather than allowing the user to subvert http semantics by overriding decision points that don't...

Yes, it would seem better to have keyword arguments throughout, in the style of var metadata. ``` clojure (wrap-trace handler :ui true :header true :mount-url "/MOUNT/x-liberator/requests/"}) ``` Given the UI...

If compatibility is an issue, you could use this code to form an arg map ``` clojure (if (every? #{:ui :header} args) (into {} (vec (map (juxt identity (partial contains?...

Yes, that looks fine to me. I wrote my last comment without noticing you had already answered the previous one.

I can see how this might happen. Do you happen to have a failing test or some input data that causes the stack-trace that you can share? Even the size...