David Copeland
David Copeland
Ah, ok, thanks for the details. The code right now omits timestamps if it's *not* a TTY like so: https://github.com/davetron5000/optparse-plus/blob/3c0a84a6280d81bab38e5ca2a2701c48cefc8935/lib/optparse_plus/cli_logger.rb#L97-L98 This is what `BLANK_FORMAT` looks like: https://github.com/davetron5000/optparse-plus/blob/3c0a84a6280d81bab38e5ca2a2701c48cefc8935/lib/optparse_plus/cli_logger.rb#L41-L43 Since that's public,...
sorry for the delay. If you clone this repo, does it work for you? In either case, can you share your code? This stuff is really hard to debug without...
Yeah, they recently added `.woff2` files and those aren't picked up by one of the other magical incantations. Will update.
I missed this somehow. I'm surprised you have to use the master branch of teaspoon. Can either @mupakoz or @jetsgit post your repos somewhere that exhibit the error?
The solution is to call `change_logger` in your `main` method to assign it to a better logger. I suppose it would be better if methadone just used the rails logger...
You can try #4 but I don't think that version is ready for what I would call a solid setup. That said, it does successfully complete the `rails new` process
I just tried making a blank slide as the first slide, and that seemed to work. Would that suffice, or were you thinking of something else? On Tue, Oct 9,...
Oh oh, I see what you mean. Yeah, I was just thinking of "at the start". Yeah, I think this would be useful feature for sure… Dave On Tue, Oct...
What's with all the "do" methods? Dave --- Buy My Book: http://www.awesomecommandlineapps.com My Blog: http://www.naildrivin5.com/blog Fork me on Github: http://davetron5000.github.com On Wed, Jan 4, 2012 at 2:58 PM, Adrian Fritsch...
Since the arguments are pass-by-reference, your log messages won't be evaluated if the log level isn't sufficient: ``` debug { "stats: " + stats } // only _evaluated_ if log...