64 Commits

Author SHA1 Message Date
Peter Taoussanis
7b09d1a562 BREAKING: Refactor Timbre for integration with clojure.tools.logging & logf macros
BREAKING CHANGES:
* Custom appenders that rely on the :more argument will no longer function correctly.
* Stacktraces are no longer automatically generated at the `log`-macro level, but are
left as an appender implementation detail. A :throwable appender argument has been added
along with a `stacktrace` fn.

MIGRATION GUIDE:
* :message is now a string of all arguments as joined by `logp`/`logf`. Appenders that
need unjoined logging arguments (i.e. raw arguments as given to `logp`/`logf`) should
use the new :log-args vector.

MOTIVATION:
The :more argument was always kind of manky.

By joining logging arguments at the `log`-macro level, we simplify appender
implementations and allow the use of different joining strategies like `logp` and
`logf`.

This approach also fits better with the `tools.logging` API, allowing a cleaner
Logger implementation.
2013-06-01 19:29:57 +07:00
Peter Taoussanis
6fc6baee37 Rename appender argument: :max-message-per-msecs -> :limit-per-msecs (backwards compatible) 2013-06-01 19:29:57 +07:00
Peter Taoussanis
c30ae5fbcc Housekeeping 2013-06-01 19:29:57 +07:00
Peter Taoussanis
7c29ce6852 Clean up appender documentation 2013-06-01 19:29:57 +07:00
Peter Taoussanis
6c0ac295f4 Bump version (1.6.0) 2013-04-22 22:24:45 +07:00
Emlyn Corrin
3eee832a63 Replace deleted space for nicer diff 2013-04-19 14:33:55 +01:00
Emlyn Corrin
48f8329dbb Add IRC appender 2013-04-19 14:28:02 +01:00
Peter Taoussanis
fdacde069a Bump version (1.5.3) 2013-04-14 16:30:55 +07:00
Peter Taoussanis
5864673b47 Housekeeping 2013-03-16 14:30:05 +07:00
Peter Taoussanis
114e35d93c Bump version (1.5.2) 2013-02-11 11:47:59 +07:00
Peter Taoussanis
766a3d61b0 Bump version (1.5.1) 2013-02-08 14:22:08 +07:00
Peter Taoussanis
ba172dfc21 Bump version (1.5.0) 2013-02-07 18:51:28 +07:00
Peter Taoussanis
4c76cd99e5 Bump version (1.4.0) 2013-02-05 20:05:49 +07:00
Peter Taoussanis
4184491719 Add middleware support, refactor appender decoration
* Appenders are now decorated via 2 separate mechanisms: a per-appender
  decorator (as before), and a new per-juxt (i.e. combined) decorator.
  The per-juxt wrapping provides a performance-conscious hook for
  higher-level facilities like the new middleware feature.

* Moved compile-time config wrapping from per-appender to per-juxt,
  improving performance.

* Fixed appender wrapper ordering.
2013-02-05 20:05:42 +07:00
Peter Taoussanis
13c148e992 Bump version (1.3.1) 2013-02-03 01:10:31 +07:00
Peter Taoussanis
c6340d9b13 Bump version (1.3.0) 2013-01-29 16:55:25 +07:00
Peter Taoussanis
c91d64eca9 Bump version (minor) 2013-01-04 15:03:27 +07:00
Peter Taoussanis
a1c888ae57 Bump version (minor) 2012-12-16 19:24:07 +07:00
Peter Taoussanis
2c6230dfa8 Update contact details (taoensso.com) 2012-12-06 16:41:09 +07:00
Peter Taoussanis
cd023eb3d6 README MD fix 2012-11-06 12:01:07 +07:00
Peter Taoussanis
59753f8e01 Add CDS note to README 2012-11-06 00:48:42 +07:00
Peter Taoussanis
ab1dc34e6a Bump version (1.0.0)! 2012-11-05 00:17:48 +07:00
Peter Taoussanis
32e113ffb6 Housekeeping 2012-11-04 23:41:21 +07:00
Peter Taoussanis
4b2cae60d3 Bump version (minor) 2012-10-26 16:28:35 +07:00
Peter Taoussanis
074f44f407 README housekeeping 2012-10-26 16:11:05 +07:00
Peter Taoussanis
734d598363 Bump version (minor) 2012-10-19 15:26:54 +07:00
Peter Taoussanis
92e31c7b7c Add simple file spit appender 2012-10-19 15:26:54 +07:00
Peter Taoussanis
ad2dad1156 Housekeeping 2012-10-19 15:02:35 +07:00
Peter Taoussanis
1fce815c09 Bump version (minor) 2012-09-21 21:03:23 +07:00
MerelyAPseudonym
99a0db6d42 Fix typito
*typito*: _n._ - a tiny typo
2012-08-02 15:00:54 -03:00
Peter Taoussanis
d5221f184e Update REAMDE for v0.8.0 changes. 2012-07-28 17:07:13 +07:00
Peter Taoussanis
a0c6b03359 Bump version (major). 2012-07-26 22:39:21 +07:00
Peter Taoussanis
bfa33a7e8e Merge branch 'dev': v0.7.0. 2012-07-13 18:12:44 +07:00
Peter Taoussanis
c1c34be596 Added 'breaking changes' to README. 2012-07-13 18:08:25 +07:00
Peter Taoussanis
cca1141c7f BREAKING: Moved Postal appender to own ns and no longer automatically include Postal as dependency.
All future appenders that depend on an external library will follow this pattern, allowing the
flexibility to add more diverse appenders without the worry of bloating Timbre core or Timbre's
dependencies.

See updated README example for how to include standard email appender.
2012-07-13 17:32:23 +07:00
Peter Taoussanis
7844eea6c9 README housekeeping. 2012-07-07 20:19:35 +07:00
Peter Taoussanis
df0d26efde README typo (spotted by Steve Miner). 2012-07-07 20:19:10 +07:00
Peter Taoussanis
c1d9442ec2 Merge branch 'dev': v0.6.1. 2012-07-05 16:49:54 +07:00
Peter Taoussanis
404d2ab886 Added note about changed repo+ns. 2012-07-05 16:39:48 +07:00
Peter Taoussanis
19f7b898e3 Added Mean Absolute Deviation (MAD) times to profiling output. Misc housekeeping. 2012-07-05 16:39:44 +07:00
Peter Taoussanis
2aa9d4d83f Merge branch 'dev': v0.6.0. 2012-07-03 21:22:44 +07:00
Peter Taoussanis
123f3c51d9 Added unaccounted-for timer. Fixed bug with :mean overflow. 2012-07-03 21:16:07 +07:00
Peter Taoussanis
0cb368a0d9 Updated README. Fixed profiler typos. Some other housekeeping. 2012-07-03 19:46:05 +07:00
Peter Taoussanis
d9a68f1e58 README tweaks. 2012-07-03 16:30:50 +07:00
Peter Taoussanis
7ce65ed924 Merge branch 'dev' 2012-07-01 18:12:32 +07:00
Peter Taoussanis
3b68744322 Pushed v0.5.1.
* Added note to README about new Clojars group.

Signed-off-by: Peter Taoussanis <ptaoussanis@gmail.com>
2012-06-29 14:13:28 +07:00
Peter Taoussanis
cc58ac0025 Moved to new Maven group artifact. 2012-06-27 19:08:07 +07:00
Peter Taoussanis
fe65311a0a Tweaked CLJWS section of README. 2012-06-20 17:53:06 +07:00
Peter Taoussanis
5a2b013db0 README tweak. 2012-06-16 22:37:51 +07:00
Peter Taoussanis
daeb4d4a9b Added ClojureWerkz section to README. 2012-06-16 13:53:38 +07:00