OLD | NEW |
| 1 ## 0.11.3+1 |
| 2 |
| 3 * Fixed several documentation comments. |
| 4 |
| 5 ## 0.11.3 |
| 6 |
| 7 * Added optional `LogRecord.object` field. |
| 8 |
| 9 * `Logger.log` sets `LogRecord.object` if the message is not a string or a |
| 10 function that returns a string. So that a handler can access the original |
| 11 object instead of just its `toString()`. |
| 12 |
1 ## 0.11.2 | 13 ## 0.11.2 |
2 | 14 |
3 * Added Logger.detached - a convinience factory to obtain a logger that is not | 15 * Added Logger.detached - a convenience factory to obtain a logger that is not |
4 attached to this library's logger hierarchy. | 16 attached to this library's logger hierarchy. |
5 | 17 |
6 ## 0.11.1+1 | 18 ## 0.11.1+1 |
7 | 19 |
8 * Include default error with the auto-generated stack traces. | 20 * Include default error with the auto-generated stack traces. |
9 | 21 |
10 ## 0.11.1 | 22 ## 0.11.1 |
11 | 23 |
12 * Add support for automatically logging the stack trace on error messages. Note | 24 * Add support for automatically logging the stack trace on error messages. Note |
13 this can be expensive, so it is off by default. | 25 this can be expensive, so it is off by default. |
14 | 26 |
15 ## 0.11.0 | 27 ## 0.11.0 |
16 | 28 |
17 * Revert change in `0.10.0`. `stackTrace` must be an instance of `StackTrace`. | 29 * Revert change in `0.10.0`. `stackTrace` must be an instance of `StackTrace`. |
18 Use the `Trace` class from the [stack_trace package][] to convert strings. | 30 Use the `Trace` class from the [stack_trace package][] to convert strings. |
19 | 31 |
20 [stack_trace package]: https://pub.dartlang.org/packages/stack_trace | 32 [stack_trace package]: https://pub.dartlang.org/packages/stack_trace |
21 | 33 |
22 ## 0.10.0 | 34 ## 0.10.0 |
23 | 35 |
24 * Change type of `stackTrace` from `StackTrace` to `Object`. | 36 * Change type of `stackTrace` from `StackTrace` to `Object`. |
25 | 37 |
26 ## 0.9.3 | 38 ## 0.9.3 |
27 | 39 |
28 * Added optional `LogRecord.zone` field. | 40 * Added optional `LogRecord.zone` field. |
29 | 41 |
30 * Record current zone (or user specified zone) when creating new `LogRecord`s. | 42 * Record current zone (or user specified zone) when creating new `LogRecord`s. |
31 | 43 |
OLD | NEW |