Commit 10da324 1 parent 7b0b2de commit 10da324 Copy full SHA for 10da324
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v0.6.0
4
+
5
+ Important: ` RingLogger.tail ` is now ` RingLogger.next ` . ` RingLogger.tail ` shows
6
+ the last n lines of the log (default is 10).
7
+
8
+ * New features
9
+ * ` grep ` greps the whole log entry rather than just the message portion. You
10
+ can ` grep ` on timestamps and message levels now.
11
+ * Functions that print log messages do the printing in the caller's context so
12
+ that printing timeouts don't happen in RingLogger GenServers calls.
13
+ * Added ` :none ` as a per-module log level to completely silence a module.
14
+ * Added ` :pager ` option to specify a custom printer for the interactive
15
+ commands.
16
+
3
17
## v0.5.0
4
18
5
19
* New features
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule RingLogger.MixProject do
4
4
def project do
5
5
[
6
6
app: :ring_logger ,
7
- version: "0.5 .0" ,
7
+ version: "0.6 .0" ,
8
8
elixir: "~> 1.4" ,
9
9
start_permanent: Mix . env ( ) == :prod ,
10
10
description: description ( ) ,
You can’t perform that action at this time.
0 commit comments