您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1356 行
48 KiB

8 年前
8 年前
9 年前
7 年前
7 年前
8 年前
6 年前
5 年前
5 年前
5 年前
6 年前
6 年前
6 年前
6 年前
6 年前
6 年前
6 年前
6 年前
6 年前
6 年前
7 年前
7 年前
7 年前
7 年前
7 年前
8 年前
8 年前
8 年前
8 年前
8 年前
9 年前
9 年前
  1. Overview
  2. --------
  3. Lager (as in the beer) is a logging framework for Erlang. Its purpose is
  4. to provide a more traditional way to perform logging in an erlang application
  5. that plays nicely with traditional UNIX logging tools like logrotate and
  6. syslog.
  7. [Travis-CI](http://travis-ci.org/erlang-lager/lager) :: [![Travis-CI](https://travis-ci.org/erlang-lager/lager.svg?branch=master)](http://travis-ci.org/erlang-lager/lager)
  8. [![Hex pm](https://img.shields.io/hexpm/v/lager)](https://hex.pm/packages/lager)
  9. Features
  10. --------
  11. * Finer grained log levels (debug, info, notice, warning, error, critical,
  12. alert, emergency)
  13. * Logger calls are transformed using a parse transform to allow capturing
  14. Module/Function/Line/Pid information
  15. * When no handler is consuming a log level (eg. debug) no event is sent
  16. to the log handler
  17. * Supports multiple backends, including console and file.
  18. * Supports multiple sinks
  19. * Rewrites common OTP error messages into more readable messages
  20. * Support for pretty printing records encountered at compile time
  21. * Tolerant in the face of large or many log messages, won't out of memory the node
  22. * Optional feature to bypass log size truncation ("unsafe")
  23. * Supports internal time and date based rotation, as well as external rotation tools
  24. * Syslog style log level comparison flags
  25. * Colored terminal output (requires R16+)
  26. * Map support (requires 17+)
  27. * Optional load shedding by setting a high water mark to kill (and reinstall)
  28. a sink after a configurable cool down timer
  29. Contributing
  30. ------------
  31. We welcome contributions from the community. We are always excited to get ideas
  32. for improving lager.
  33. If you are looking for an idea to help out, please take a look at our open
  34. issues - a number of them are tagged with [Help Wanted](https://github.com/erlang-lager/lager/issues?q=is%3Aopen+is%3Aissue+label%3A%22Help+Wanted%22)
  35. and [Easy](https://github.com/erlang-lager/lager/issues?q=is%3Aopen+is%3Aissue+label%3AEasy) - some
  36. of them are tagged as both! We are happy to mentor people get started with any
  37. of these issues, and they don't need prior discussion.
  38. That being said, before you send large changes please open an issue first to
  39. discuss the change you'd like to make along with an idea of your proposal to
  40. implement that change.
  41. ### PR guidelines ###
  42. * Large changes without prior discussion are likely to be rejected.
  43. * Changes without test cases are likely to be rejected.
  44. * Please use the style of the existing codebase when submitting PRs.
  45. We review PRs and issues at least once a month as described below.
  46. OTP Support Policy
  47. ------------------
  48. The lager maintainers intend to support the past three OTP releases from
  49. current on the main 3.x branch of the project. As of August 2019 that includes
  50. 22, 21 20
  51. Lager may or may not run on older OTP releases but it will only be guaranteed
  52. tested on the previous three OTP releases. If you need a version of lager
  53. which runs on older OTP releases, we recommend you use either the 3.4.0 release
  54. or the 2.x branch.
  55. Monthly triage cadence
  56. ----------------------
  57. We have (at least) monthly issue and PR triage for lager in the #lager room on the
  58. [freenode](https://freenode.net) IRC network every third Thursday at 2 pm US/Pacific,
  59. 10 pm UTC. You are welcome to join us there to ask questions about lager or
  60. participate in the triage.
  61. Usage
  62. -----
  63. To use lager in your application, you need to define it as a rebar dep or have
  64. some other way of including it in Erlang's path. You can then add the
  65. following option to the erlang compiler flags:
  66. ```erlang
  67. {parse_transform, lager_transform}
  68. ```
  69. Alternately, you can add it to the module you wish to compile with logging
  70. enabled:
  71. ```erlang
  72. -compile([{parse_transform, lager_transform}]).
  73. ```
  74. Before logging any messages, you'll need to start the lager application. The
  75. lager module's `start` function takes care of loading and starting any dependencies
  76. lager requires.
  77. ```erlang
  78. lager:start().
  79. ```
  80. You can also start lager on startup with a switch to `erl`:
  81. ```erlang
  82. erl -pa path/to/lager/ebin -s lager
  83. ```
  84. Once you have built your code with lager and started the lager application,
  85. you can then generate log messages by doing the following:
  86. ```erlang
  87. lager:error("Some message")
  88. ```
  89. Or:
  90. ```erlang
  91. lager:warning("Some message with a term: ~p", [Term])
  92. ```
  93. The general form is `lager:Severity()` where `Severity` is one of the log levels
  94. mentioned above.
  95. Configuration
  96. -------------
  97. To configure lager's backends, you use an application variable (probably in
  98. your app.config):
  99. ```erlang
  100. {lager, [
  101. {log_root, "/var/log/hello"},
  102. {handlers, [
  103. {lager_console_backend, [{level, info}]},
  104. {lager_file_backend, [{file, "error.log"}, {level, error}]},
  105. {lager_file_backend, [{file, "console.log"}, {level, info}]}
  106. ]}
  107. ]}.
  108. ```
  109. ```log_root``` variable is optional, by default file paths are relative to CWD.
  110. The available configuration options for each backend are listed in their
  111. module's documentation.
  112. Sinks
  113. -----
  114. Lager has traditionally supported a single sink (implemented as a
  115. `gen_event` manager) named `lager_event` to which all backends were
  116. connected.
  117. Lager now supports extra sinks; each sink can have different
  118. sync/async message thresholds and different backends.
  119. ### Sink configuration
  120. To use multiple sinks (beyond the built-in sink of lager and lager_event), you
  121. need to:
  122. 1. Setup rebar.config
  123. 2. Configure the backends in app.config
  124. #### Names
  125. Each sink has two names: one atom to be used like a module name for
  126. sending messages, and that atom with `_lager_event` appended for backend
  127. configuration.
  128. This reflects the legacy behavior: `lager:info` (or `critical`, or
  129. `debug`, etc) is a way of sending a message to a sink named
  130. `lager_event`. Now developers can invoke `audit:info` or
  131. `myCompanyName:debug` so long as the corresponding `audit_lager_event` or
  132. `myCompanyName_lager_event` sinks are configured.
  133. #### rebar.config
  134. In `rebar.config` for the project that requires lager, include a list
  135. of sink names (without the `_lager_event` suffix) in `erl_opts`:
  136. `{lager_extra_sinks, [audit]}`
  137. #### Runtime requirements
  138. To be useful, sinks must be configured at runtime with backends.
  139. In `app.config` for the project that requires lager, for example,
  140. extend the lager configuration to include an `extra_sinks` tuple with
  141. backends (aka "handlers") and optionally `async_threshold` and
  142. `async_threshold_window` values (see **Overload Protection**
  143. below). If async values are not configured, no overload protection
  144. will be applied on that sink.
  145. ```erlang
  146. [{lager, [
  147. {log_root, "/tmp"},
  148. %% Default handlers for lager/lager_event
  149. {handlers, [
  150. {lager_console_backend, [{level, info}]},
  151. {lager_file_backend, [{file, "error.log"}, {level, error}]},
  152. {lager_file_backend, [{file, "console.log"}, {level, info}]}
  153. ]},
  154. %% Any other sinks
  155. {extra_sinks,
  156. [
  157. {audit_lager_event,
  158. [{handlers,
  159. [{lager_file_backend,
  160. [{file, "sink1.log"},
  161. {level, info}
  162. ]
  163. }]
  164. },
  165. {async_threshold, 500},
  166. {async_threshold_window, 50}]
  167. }]
  168. }
  169. ]
  170. }
  171. ].
  172. ```
  173. Custom Formatting
  174. -----------------
  175. All loggers have a default formatting that can be overriden. A formatter is any module that
  176. exports `format(#lager_log_message{},Config#any())`. It is specified as part of the configuration
  177. for the backend:
  178. ```erlang
  179. {lager, [
  180. {handlers, [
  181. {lager_console_backend, [{level, info}, {formatter, lager_default_formatter},
  182. {formatter_config, [time," [",severity,"] ", message, "\n"]}]},
  183. {lager_file_backend, [{file, "error.log"}, {level, error}, {formatter, lager_default_formatter},
  184. {formatter_config, [date, " ", time," [",severity,"] ",pid, " ", message, "\n"]}]},
  185. {lager_file_backend, [{file, "console.log"}, {level, info}]}
  186. ]}
  187. ]}.
  188. ```
  189. Included is `lager_default_formatter`. This provides a generic, default
  190. formatting for log messages using a structure similar to Erlang's
  191. [iolist](http://learnyousomeerlang.com/buckets-of-sockets#io-lists) which we
  192. call "semi-iolist":
  193. * Any traditional iolist elements in the configuration are printed verbatim.
  194. * Atoms in the configuration are treated as placeholders for lager metadata and
  195. extracted from the log message.
  196. * The placeholders `date`, `time`, `message`, `sev` and `severity` will always exist.
  197. * `sev` is an abbreviated severity which is interpreted as a capitalized
  198. single letter encoding of the severity level (e.g. `'debug'` -> `$D`)
  199. * The placeholders `pid`, `file`, `line`, `module`, `function`, and `node`
  200. will always exist if the parse transform is used.
  201. * The placeholder `application` may exist if the parse transform is used.
  202. It is dependent on finding the applications `app.src` file.
  203. * If the error logger integration is used, the placeholder `pid`
  204. will always exist and the placeholder `name` may exist.
  205. * Applications can define their own metadata placeholder.
  206. * A tuple of `{atom(), semi-iolist()}` allows for a fallback for
  207. the atom placeholder. If the value represented by the atom
  208. cannot be found, the semi-iolist will be interpreted instead.
  209. * A tuple of `{atom(), semi-iolist(), semi-iolist()}` represents a
  210. conditional operator: if a value for the atom placeholder can be
  211. found, the first semi-iolist will be output; otherwise, the
  212. second will be used.
  213. Examples:
  214. ```
  215. ["Foo"] -> "Foo", regardless of message content.
  216. [message] -> The content of the logged message, alone.
  217. [{pid,"Unknown Pid"}] -> "<?.?.?>" if pid is in the metadata, "Unknown Pid" if not.
  218. [{pid, ["My pid is ", pid], ["Unknown Pid"]}] -> if pid is in the metadata print "My pid is <?.?.?>", otherwise print "Unknown Pid"
  219. [{server,{pid, ["(", pid, ")"], ["(Unknown Server)"]}}] -> user provided server metadata, otherwise "(<?.?.?>)", otherwise "(Unknown Server)"
  220. ```
  221. Universal time
  222. --------------
  223. By default, lager formats timestamps as local time for whatever computer
  224. generated the log message.
  225. To make lager use UTC timestamps, you can set the `sasl` application's
  226. `utc_log` configuration parameter to `true` in your application configuration
  227. file.
  228. Example:
  229. ```
  230. %% format log timestamps as UTC
  231. [{sasl, [{utc_log, true}]}].
  232. ```
  233. Error logger integration
  234. ------------------------
  235. Lager is also supplied with a `error_logger` handler module that translates
  236. traditional erlang error messages into a friendlier format and sends them into
  237. lager itself to be treated like a regular lager log call. To disable this, set
  238. the lager application variable `error_logger_redirect` to `false`.
  239. You can also disable reformatting for OTP and Cowboy messages by setting variable
  240. `error_logger_format_raw` to `true`.
  241. If you installed your own handler(s) into `error_logger`, you can tell
  242. lager to leave it alone by using the `error_logger_whitelist` environment
  243. variable with a list of handlers to allow.
  244. ```
  245. {error_logger_whitelist, [my_handler]}
  246. ```
  247. The `error_logger` handler will also log more complete error messages (protected
  248. with use of `trunc_io`) to a "crash log" which can be referred to for further
  249. information. The location of the crash log can be specified by the `crash_log`
  250. application variable. If set to `false` it is not written at all.
  251. Messages in the crash log are subject to a maximum message size which can be
  252. specified via the `crash_log_msg_size` application variable.
  253. Messages from `error_logger` will be redirected to `error_logger_lager_event` sink
  254. if it is defined so it can be redirected to another log file.
  255. For example:
  256. ```
  257. [{lager, [
  258. {extra_sinks,
  259. [
  260. {error_logger_lager_event,
  261. [{handlers, [
  262. {lager_file_backend, [{file, "error_logger.log"}, {level, info}]}]
  263. }]
  264. }]
  265. }]
  266. }].
  267. ```
  268. will send all `error_logger` messages to `error_logger.log` file.
  269. Overload Protection
  270. -------------------
  271. ### Asynchronous mode
  272. Prior to lager 2.0, the `gen_event` at the core of lager operated purely in
  273. synchronous mode. Asynchronous mode is faster, but has no protection against
  274. message queue overload. As of lager 2.0, the `gen_event` takes a hybrid
  275. approach. it polls its own mailbox size and toggles the messaging between
  276. synchronous and asynchronous depending on mailbox size.
  277. ```erlang
  278. {async_threshold, 20},
  279. {async_threshold_window, 5}
  280. ```
  281. This will use async messaging until the mailbox exceeds 20 messages, at which
  282. point synchronous messaging will be used, and switch back to asynchronous, when
  283. size reduces to `20 - 5 = 15`.
  284. If you wish to disable this behaviour, simply set `async_threshold` to `undefined`. It defaults
  285. to a low number to prevent the mailbox growing rapidly beyond the limit and causing
  286. problems. In general, lager should process messages as fast as they come in, so getting
  287. 20 behind should be relatively exceptional anyway.
  288. If you want to limit the number of messages per second allowed from `error_logger`,
  289. which is a good idea if you want to weather a flood of messages when lots of
  290. related processes crash, you can set a limit:
  291. ```erlang
  292. {error_logger_hwm, 50}
  293. ```
  294. It is probably best to keep this number small.
  295. ### Event queue flushing
  296. When the high-water mark is exceeded, lager can be configured to flush all
  297. event notifications in the message queue. This can have unintended consequences
  298. for other handlers in the same event manager (in e.g. the `error_logger`), as
  299. events they rely on may be wrongly discarded. By default, this behavior is enabled,
  300. but can be controlled, for the `error_logger` via:
  301. ```erlang
  302. {error_logger_flush_queue, true | false}
  303. ```
  304. or for a specific sink, using the option:
  305. ```erlang
  306. {flush_queue, true | false}
  307. ```
  308. If `flush_queue` is true, a message queue length threshold can be set, at which
  309. messages will start being discarded. The default threshold is `0`, meaning that
  310. if `flush_queue` is true, messages will be discarded if the high-water mark is
  311. exceeded, regardless of the length of the message queue. The option to control
  312. the threshold is, for `error_logger`:
  313. ```erlang
  314. {error_logger_flush_threshold, 1000}
  315. ```
  316. and for sinks:
  317. ```erlang
  318. {flush_threshold, 1000}
  319. ```
  320. ### Sink Killer
  321. In some high volume situations, it may be preferable to drop all pending log
  322. messages instead of letting them drain over time.
  323. If you prefer, you may choose to use the sink killer to shed load. In this
  324. operational mode, if the `gen_event` mailbox exceeds a configurable
  325. high water mark, the sink will be killed and reinstalled after a
  326. configurable cool down time.
  327. You can configure this behavior by using these configuration directives:
  328. ```erlang
  329. {killer_hwm, 1000},
  330. {killer_reinstall_after, 5000}
  331. ```
  332. This means if the sink's mailbox size exceeds 1000 messages, kill the
  333. entire sink and reload it after 5000 milliseconds. This behavior can
  334. also be installed into alternative sinks if desired.
  335. By default, the manager killer *is not installed* into any sink. If
  336. the `killer_reinstall_after` cool down time is not specified it defaults
  337. to 5000.
  338. "Unsafe"
  339. --------
  340. The unsafe code pathway bypasses the normal lager formatting code and uses the
  341. same code as error_logger in OTP. This provides a marginal speedup to your logging
  342. code (we measured between 0.5-1.3% improvement during our benchmarking; others have
  343. reported better improvements.)
  344. This is a **dangerous** feature. It *will not* protect you against
  345. large log messages - large messages can kill your application and even your
  346. Erlang VM dead due to memory exhaustion as large terms are copied over and
  347. over in a failure cascade. We strongly recommend that this code pathway
  348. only be used by log messages with a well bounded upper size of around 500 bytes.
  349. If there's any possibility the log messages could exceed that limit, you should
  350. use the normal lager message formatting code which will provide the appropriate
  351. size limitations and protection against memory exhaustion.
  352. If you want to format an unsafe log message, you may use the severity level (as
  353. usual) followed by `_unsafe`. Here's an example:
  354. ```erlang
  355. lager:info_unsafe("The quick brown ~s jumped over the lazy ~s", ["fox", "dog"]).
  356. ```
  357. Runtime loglevel changes
  358. ------------------------
  359. You can change the log level of any lager backend at runtime by doing the
  360. following:
  361. ```erlang
  362. lager:set_loglevel(lager_console_backend, debug).
  363. ```
  364. Or, for the backend with multiple handles (files, mainly):
  365. ```erlang
  366. lager:set_loglevel(lager_file_backend, "console.log", debug).
  367. ```
  368. Lager keeps track of the minimum log level being used by any backend and
  369. suppresses generation of messages lower than that level. This means that debug
  370. log messages, when no backend is consuming debug messages, are effectively
  371. free. A simple benchmark of doing 1 million debug log messages while the
  372. minimum threshold was above that takes less than half a second.
  373. Syslog style loglevel comparison flags
  374. --------------------------------------
  375. In addition to the regular log level names, you can also do finer grained masking
  376. of what you want to log:
  377. ```
  378. info - info and higher (>= is implicit)
  379. =debug - only the debug level
  380. !=info - everything but the info level
  381. <=notice - notice and below
  382. <warning - anything less than warning
  383. ```
  384. These can be used anywhere a loglevel is supplied, although they need to be either
  385. a quoted atom or a string.
  386. Internal log rotation
  387. ---------------------
  388. Lager can rotate its own logs or have it done via an external process. To
  389. use internal rotation, use the `size`, `date` and `count` values in the file
  390. backend's config:
  391. ```erlang
  392. [{file, "error.log"}, {level, error}, {size, 10485760}, {date, "$D0"}, {count, 5}]
  393. ```
  394. This tells lager to log error and above messages to `error.log` and to
  395. rotate the file at midnight or when it reaches 10mb, whichever comes first,
  396. and to keep 5 rotated logs in addition to the current one. Setting the
  397. count to 0 does not disable rotation, it instead rotates the file and keeps
  398. no previous versions around. To disable rotation set the size to 0 and the
  399. date to "".
  400. The `$D0` syntax is taken from the syntax newsyslog uses in newsyslog.conf.
  401. The relevant extract follows:
  402. ```
  403. Day, week and month time format: The lead-in character
  404. for day, week and month specification is a `$'-sign.
  405. The particular format of day, week and month
  406. specification is: [Dhh], [Ww[Dhh]] and [Mdd[Dhh]],
  407. respectively. Optional time fields default to
  408. midnight. The ranges for day and hour specifications
  409. are:
  410. hh hours, range 0 ... 23
  411. w day of week, range 0 ... 6, 0 = Sunday
  412. dd day of month, range 1 ... 31, or the
  413. letter L or l to specify the last day of
  414. the month.
  415. Some examples:
  416. $D0 rotate every night at midnight
  417. $D23 rotate every day at 23:00 hr
  418. $W0D23 rotate every week on Sunday at 23:00 hr
  419. $W5D16 rotate every week on Friday at 16:00 hr
  420. $M1D0 rotate on the first day of every month at
  421. midnight (i.e., the start of the day)
  422. $M5D6 rotate on every 5th day of the month at
  423. 6:00 hr
  424. ```
  425. On top of the day, week and month time format from newsyslog,
  426. hour specification is added from PR [#420](https://github.com/erlang-lager/lager/pull/420)
  427. ```
  428. Format of hour specification is : [Hmm]
  429. The range for minute specification is:
  430. mm minutes, range 0 ... 59
  431. Some examples:
  432. $H00 rotate every hour at HH:00
  433. $D12H30 rotate every day at 12:30
  434. $W0D0H0 rotate every week on Sunday at 00:00
  435. ```
  436. To configure the crash log rotation, the following application variables are
  437. used:
  438. * `crash_log_size`
  439. * `crash_log_date`
  440. * `crash_log_count`
  441. * `crash_log_rotator`
  442. See the `.app.src` file for further details.
  443. Custom Log Rotation
  444. -------------------
  445. Custom log rotator could be configured with option for `lager_file_backend`
  446. ```erlang
  447. {rotator, lager_rotator_default}
  448. ```
  449. The module should provide the following callbacks as `lager_rotator_behaviour`
  450. ```erlang
  451. %% @doc Create a log file
  452. -callback(create_logfile(Name::list(), Buffer::{integer(), integer()} | any()) ->
  453. {ok, {FD::file:io_device(), Inode::integer(), Size::integer()}} | {error, any()}).
  454. %% @doc Open a log file
  455. -callback(open_logfile(Name::list(), Buffer::{integer(), integer()} | any()) ->
  456. {ok, {FD::file:io_device(), Inode::integer(), Size::integer()}} | {error, any()}).
  457. %% @doc Ensure reference to current target, could be rotated
  458. -callback(ensure_logfile(Name::list(), FD::file:io_device(), Inode::integer(),
  459. Buffer::{integer(), integer()} | any()) ->
  460. {ok, {FD::file:io_device(), Inode::integer(), Size::integer()}} | {error, any()}).
  461. %% @doc Rotate the log file
  462. -callback(rotate_logfile(Name::list(), Count::integer()) ->
  463. ok).
  464. ```
  465. Syslog Support
  466. --------------
  467. Lager syslog output is provided as a separate application:
  468. [lager_syslog](https://github.com/erlang-lager/lager_syslog). It is packaged as a
  469. separate application so lager itself doesn't have an indirect dependency on a
  470. port driver. Please see the `lager_syslog` README for configuration information.
  471. Other Backends
  472. --------------
  473. There are lots of them! Some connect log messages to AMQP, various logging
  474. analytic services ([bunyan](https://github.com/Vagabond/lager_bunyan_formatter),
  475. [loggly](https://github.com/kivra/lager_loggly), etc), and more. [Looking on
  476. hex](https://hex.pm/packages?_utf8=✓&search=lager&sort=recent_downloads) or
  477. using "lager BACKEND" where "BACKEND" is your preferred log solution
  478. on your favorite search engine is a good starting point.
  479. Exception Pretty Printing
  480. ----------------------
  481. Up to OTP 20:
  482. ```erlang
  483. try
  484. foo()
  485. catch
  486. Class:Reason ->
  487. lager:error(
  488. "~nStacktrace:~s",
  489. [lager:pr_stacktrace(erlang:get_stacktrace(), {Class, Reason})])
  490. end.
  491. ```
  492. On OTP 21+:
  493. ```erlang
  494. try
  495. foo()
  496. catch
  497. Class:Reason:Stacktrace ->
  498. lager:error(
  499. "~nStacktrace:~s",
  500. [lager:pr_stacktrace(Stacktrace, {Class, Reason})])
  501. end.
  502. ```
  503. Record Pretty Printing
  504. ----------------------
  505. Lager's parse transform will keep track of any record definitions it encounters
  506. and store them in the module's attributes. You can then, at runtime, print any
  507. record a module compiled with the lager parse transform knows about by using the
  508. `lager:pr/2` function, which takes the record and the module that knows about the record:
  509. ```erlang
  510. lager:info("My state is ~p", [lager:pr(State, ?MODULE)])
  511. ```
  512. Often, `?MODULE` is sufficent, but you can obviously substitute that for a literal module name.
  513. `lager:pr` also works from the shell.
  514. Colored terminal output
  515. -----------------------
  516. If you have Erlang R16 or higher, you can tell lager's console backend to be colored. Simply
  517. add to lager's application environment config:
  518. ```erlang
  519. {colored, true}
  520. ```
  521. If you don't like the default colors, they are also configurable; see
  522. the `.app.src` file for more details.
  523. The output will be colored from the first occurrence of the atom color
  524. in the formatting configuration. For example:
  525. ```erlang
  526. {lager_console_backend, [{level, info}, {formatter, lager_default_formatter},
  527. {formatter_config, [time, color, " [",severity,"] ", message, "\e[0m\r\n"]}]]}
  528. ```
  529. This will make the entire log message, except time, colored. The
  530. escape sequence before the line break is needed in order to reset the
  531. color after each log message.
  532. Tracing
  533. -------
  534. Lager supports basic support for redirecting log messages based on log message
  535. attributes. Lager automatically captures the pid, module, function and line at the
  536. log message callsite. However, you can add any additional attributes you wish:
  537. ```erlang
  538. lager:warning([{request, RequestID},{vhost, Vhost}], "Permission denied to ~s", [User])
  539. ```
  540. Then, in addition to the default trace attributes, you'll be able to trace
  541. based on request or vhost:
  542. ```erlang
  543. lager:trace_file("logs/example.com.error", [{vhost, "example.com"}], error)
  544. ```
  545. To persist metadata for the life of a process, you can use `lager:md/1` to store metadata
  546. in the process dictionary:
  547. ```erlang
  548. lager:md([{zone, forbidden}])
  549. ```
  550. Note that `lager:md` will *only* accept a list of key/value pairs keyed by atoms.
  551. You can also omit the final argument, and the loglevel will default to
  552. `debug`.
  553. Tracing to the console is similar:
  554. ```erlang
  555. lager:trace_console([{request, 117}])
  556. ```
  557. In the above example, the loglevel is omitted, but it can be specified as the
  558. second argument if desired.
  559. You can also specify multiple expressions in a filter, or use the `*` atom as
  560. a wildcard to match any message that has that attribute, regardless of its
  561. value. You may also use the special value `!` to mean, only select if this
  562. key is **not** present.
  563. Tracing to an existing logfile is also supported (but see **Multiple
  564. sink support** below):
  565. ```erlang
  566. lager:trace_file("log/error.log", [{module, mymodule}, {function, myfunction}], warning)
  567. ```
  568. To view the active log backends and traces, you can use the `lager:status()`
  569. function. To clear all active traces, you can use `lager:clear_all_traces()`.
  570. To delete a specific trace, store a handle for the trace when you create it,
  571. that you later pass to `lager:stop_trace/1`:
  572. ```erlang
  573. {ok, Trace} = lager:trace_file("log/error.log", [{module, mymodule}]),
  574. ...
  575. lager:stop_trace(Trace)
  576. ```
  577. Tracing to a pid is somewhat of a special case, since a pid is not a
  578. data-type that serializes well. To trace by pid, use the pid as a string:
  579. ```erlang
  580. lager:trace_console([{pid, "<0.410.0>"}])
  581. ```
  582. ### Filter expressions
  583. As of lager 3.3.1, you can also use a 3 tuple while tracing where the second
  584. element is a comparison operator. The currently supported comparison operators
  585. are:
  586. * `<` - less than
  587. * `=<` - less than or equal
  588. * `=` - equal to
  589. * `!=` - not equal to
  590. * `>` - greater than
  591. * `>=` - greater than or equal
  592. ```erlang
  593. lager:trace_console([{request, '>', 117}, {request, '<', 120}])
  594. ```
  595. Using `=` is equivalent to the 2-tuple form.
  596. ### Filter composition
  597. As of lager 3.3.1 you may also use the special filter composition keys of
  598. `all` or `any`. For example the filter example above could be
  599. expressed as:
  600. ```erlang
  601. lager:trace_console([{all, [{request, '>', 117}, {request, '<', 120}]}])
  602. ```
  603. `any` has the effect of "OR style" logical evaluation between filters; `all`
  604. means "AND style" logical evaluation between filters. These compositional filters
  605. expect a list of additional filter expressions as their values.
  606. ### Null filters
  607. The `null` filter has a special meaning. A filter of `{null, false}` acts as
  608. a black hole; nothing is passed through. A filter of `{null, true}` means
  609. *everything* passes through. No other values for the null filter are valid and
  610. will be rejected.
  611. ### Multiple sink support
  612. If using multiple sinks, there are limitations on tracing that you
  613. should be aware of.
  614. Traces are specific to a sink, which can be specified via trace
  615. filters:
  616. ```erlang
  617. lager:trace_file("log/security.log", [{sink, audit_event}, {function, myfunction}], warning)
  618. ```
  619. If no sink is thus specified, the default lager sink will be used.
  620. This has two ramifications:
  621. * Traces cannot intercept messages sent to a different sink.
  622. * Tracing to a file already opened via `lager:trace_file` will only be
  623. successful if the same sink is specified.
  624. The former can be ameliorated by opening multiple traces; the latter
  625. can be fixed by rearchitecting lager's file backend, but this has not
  626. been tackled.
  627. ### Traces from configuration
  628. Lager supports starting traces from its configuration file. The keyword
  629. to define them is `traces`, followed by a proplist of tuples that define
  630. a backend handler and zero or more filters in a required list,
  631. followed by an optional message severity level.
  632. An example looks like this:
  633. ```erlang
  634. {lager, [
  635. {handlers, [...]},
  636. {traces, [
  637. %% handler, filter, message level (defaults to debug if not given)
  638. {lager_console_backend, [{module, foo}], info },
  639. {{lager_file_backend, "trace.log"}, [{request, '>', 120}], error},
  640. {{lager_file_backend, "event.log"}, [{module, bar}] } %% implied debug level here
  641. ]}
  642. ]}.
  643. ```
  644. In this example, we have three traces. One using the console backend, and two
  645. using the file backend. If the message severity level is left out, it defaults
  646. to `debug` as in the last file backend example.
  647. The `traces` keyword works on alternative sinks too but the same limitations
  648. and caveats noted above apply.
  649. **IMPORTANT**: You **must** define a severity level in all lager releases
  650. up to and including 3.1.0 or previous. The 2-tuple form wasn't added until
  651. 3.2.0.
  652. Setting dynamic metadata at compile-time
  653. ----------------------------------------
  654. Lager supports supplying metadata from external sources by registering a
  655. callback function. This metadata is also persistent across processes even if
  656. the process dies.
  657. In general use you won't need to use this feature. However it is useful in
  658. situations such as:
  659. * Tracing information provided by
  660. [seq_trace](http://erlang.org/doc/man/seq_trace.html)
  661. * Contextual information about your application
  662. * Persistent information which isn't provided by the default placeholders
  663. * Situations where you would have to set the metadata before every logging call
  664. You can add the callbacks by using the `{lager_parse_transform_functions, X}`
  665. option. It is only available when using `parse_transform`. In rebar, you can
  666. add it to `erl_opts` as below:
  667. ```erlang
  668. {erl_opts, [{parse_transform, lager_transform},
  669. {lager_function_transforms,
  670. [
  671. %% Placeholder Resolve type Callback tuple
  672. {metadata_placeholder, on_emit, {module_name, function_name}},
  673. {other_metadata_placeholder, on_log, {module_name, function_name}}
  674. ]}]}.
  675. ```
  676. The first atom is the placeholder atom used for the substitution in your custom
  677. formatter. See [Custom Formatting](#custom-formatting) for more information.
  678. The second atom is the resolve type. This specify the callback to resolve at
  679. the time of the message being emitted or at the time of the logging call. You
  680. have to specify either the atom `on_emit` or `on_log`. There is not a 'right'
  681. resolve type to use, so please read the uses/caveats of each and pick the option
  682. which fits your requirements best.
  683. `on_emit`:
  684. * The callback functions are not resolved until the message is emitted by the
  685. backend.
  686. * If the callback function cannot be resolved, not loaded or produces
  687. unhandled errors then `undefined` will be returned.
  688. * Since the callback function is dependent on a process, there is the
  689. chance that message will be emitted after the dependent process has died
  690. resulting in `undefined` being returned. This process can also be your own
  691. process
  692. `on_log`:
  693. * The callback functions are resolved regardless whether the message is
  694. emitted or not
  695. * If the callback function cannot be resolved or not loaded the errors are
  696. not handled by lager itself.
  697. * Any potential errors in callback should be handled in the callback function
  698. itself.
  699. * Because the function is resolved at log time there should be less chance
  700. of the dependent process dying before you can resolve it, especially if
  701. you are logging from the app which contains the callback.
  702. The third element is the callback to your function consisting of a tuple in the
  703. form `{Module Function}`. The callback should look like the following
  704. regardless if using `on_emit` or `on_log`:
  705. * It should be exported
  706. * It should takes no arguments e.g. has an arity of 0
  707. * It should return any traditional iolist elements or the atom `undefined`
  708. * For errors generated within your callback see the resolve type documentation
  709. above.
  710. If the callback returns `undefined` then it will follow the same fallback and
  711. conditional operator rules as documented in the
  712. [Custom Formatting](#custom-formatting) section.
  713. This example would work with `on_emit` but could be unsafe to use with
  714. `on_log`. If the call failed in `on_emit` it would default to `undefined`,
  715. however with `on_log` it would error.
  716. ```erlang
  717. -export([my_callback/0]).
  718. my_callback() ->
  719. my_app_serv:call('some options').
  720. ```
  721. This example would be to safe to work with both `on_emit` and `on_log`
  722. ```erlang
  723. -export([my_callback/0]).
  724. my_callback() ->
  725. try my_app_serv:call('some options') of
  726. Result ->
  727. Result
  728. catch
  729. _ ->
  730. %% You could define any traditional iolist elements you wanted here
  731. undefined
  732. end.
  733. ```
  734. Note that the callback can be any Module:Function/0. It does not have be part
  735. of your application. For example you could use `cpu_sup:avg1/0` as your
  736. callback function like so `{cpu_avg1, on_emit, {cpu_sup, avg1}}`
  737. Examples:
  738. ```erlang
  739. -export([reductions/0]).
  740. reductions() ->
  741. proplists:get_value(reductions, erlang:process_info(self())).
  742. ```
  743. ```erlang
  744. -export([seq_trace/0]).
  745. seq_trace() ->
  746. case seq_trace:get_token(label) of
  747. {label, TraceLabel} ->
  748. TraceLabel;
  749. _ ->
  750. undefined
  751. end.
  752. ```
  753. **IMPORTANT**: Since `on_emit` relies on function calls injected at the
  754. point where a log message is emitted, your logging performance (ops/sec)
  755. will be impacted by what the functions you call do and how much latency they
  756. may introduce. This impact will even greater with `on_log` since the calls
  757. are injected at the point a message is logged.
  758. Setting the truncation limit at compile-time
  759. --------------------------------------------
  760. Lager defaults to truncating messages at 4096 bytes, you can alter this by
  761. using the `{lager_truncation_size, X}` option. In rebar, you can add it to
  762. `erl_opts`:
  763. ```erlang
  764. {erl_opts, [{parse_transform, lager_transform}, {lager_truncation_size, 1024}]}.
  765. ```
  766. You can also pass it to `erlc`, if you prefer:
  767. ```
  768. erlc -pa lager/ebin +'{parse_transform, lager_transform}' +'{lager_truncation_size, 1024}' file.erl
  769. ```
  770. Suppress applications and supervisors start/stop logs
  771. -----------------------------------------------------
  772. If you don't want to see supervisors and applications start/stop logs in debug
  773. level of your application, you can use these configs to turn it off:
  774. ```erlang
  775. {lager, [{suppress_application_start_stop, true},
  776. {suppress_supervisor_start_stop, true}]}
  777. ```
  778. Sys debug functions
  779. --------------------
  780. Lager provides an integrated way to use sys 'debug functions'. You can install a debug
  781. function in a target process by doing
  782. ```erlang
  783. lager:install_trace(Pid, notice).
  784. ```
  785. You can also customize the tracing somewhat:
  786. ```erlang
  787. lager:install_trace(Pid, notice, [{count, 100}, {timeout, 5000}, {format_string, "my trace event ~p ~p"]}).
  788. ```
  789. The trace options are currently:
  790. * timeout - how long the trace stays installed: `infinity` (the default) or a millisecond timeout
  791. * count - how many trace events to log: `infinity` (default) or a positive number
  792. * format_string - the format string to log the event with. *Must* have 2 format specifiers for the 2 parameters supplied.
  793. This will, on every 'system event' for an OTP process (usually inbound messages, replies
  794. and state changes) generate a lager message at the specified log level.
  795. You can remove the trace when you're done by doing:
  796. ```erlang
  797. lager:remove_trace(Pid).
  798. ```
  799. If you want to start an OTP process with tracing enabled from the very beginning, you can do something like this:
  800. ```erlang
  801. gen_server:start_link(mymodule, [], [{debug, [{install, {fun lager:trace_func/3, lager:trace_state(undefined, notice, [])}}]}]).
  802. ```
  803. The third argument to the trace_state function is the Option list documented above.
  804. Console output to another group leader process
  805. ----------------------------------------------
  806. If you want to send your console output to another group_leader (typically on
  807. another node) you can provide a `{group_leader, Pid}` argument to the console
  808. backend. This can be combined with another console config option, `id` and
  809. gen_event's `{Module, ID}` to allow remote tracing of a node to standard out via
  810. nodetool:
  811. ```erlang
  812. GL = erlang:group_leader(),
  813. Node = node(GL),
  814. lager_app:start_handler(lager_event, {lager_console_backend, Node},
  815. [{group_leader, GL}, {level, none}, {id, {lager_console_backend, Node}}]),
  816. case lager:trace({lager_console_backend, Node}, Filter, Level) of
  817. ...
  818. ```
  819. In the above example, the code is assumed to be running via a `nodetool rpc`
  820. invocation so that the code is executing on the Erlang node, but the
  821. group_leader is that of the reltool node (eg. appname_maint_12345@127.0.0.1).
  822. If you intend to use tracing with this feature, make sure the second parameter
  823. to start_handler and the `id` parameter match. Thus when the custom group_leader
  824. process exits, lager will remove any associated traces for that handler.
  825. Elixir Support
  826. --------------
  827. There are 2 ways in which Lager can be leveraged in an Elixir project:
  828. 1. Lager Backend for Elixir Logger
  829. 2. Directly
  830. ### Lager Backend for Elixir Logger
  831. [Elixir's Logger](https://hexdocs.pm/logger/Logger.html) is the idiomatic way
  832. to add logging into elixir code. Logger has a plug-in model,
  833. allowing for different logging [Backends](https://hexdocs.pm/logger/Logger.html#module-backends)
  834. to be used without the need to change the logging code within your project.
  835. This approach will benefit from the fact that most elixir libs and frameworks
  836. are likely to use the elixir Logger and as such logging will all flow via the
  837. same logging mechanism.
  838. In [elixir 1.5 support for parse transforms was deprecated](https://github.com/elixir-lang/elixir/issues/5762).
  839. Taking the "Lager as a Logger Backend" approach is likely bypass any related
  840. regression issues that would be introduced into a project which is using lager
  841. directly when updating to elixir 1.5.
  842. There are open source elixir Logger backends for Lager available:
  843. - [LagerLogger](https://github.com/PSPDFKit-labs/lager_logger)
  844. - [LoggerLagerBackend](https://github.com/jonathanperret/logger_lager_backend)
  845. ### Directly
  846. It is fully possible prior to elixir 1.5 to use lager and all its features
  847. directly.
  848. After elixir 1.5 there is no support for parse transforms, and it is
  849. recommended to use an elixir wrapper for the lager api that provides compile time
  850. log level exclusion via elixir macros when opting for direct use of lager.
  851. Including Lager as a dependency:
  852. ``` elixir
  853. # mix.exs
  854. def application do
  855. [
  856. applications: [:lager],
  857. erl_opts: [parse_transform: "lager_transform"]
  858. ]
  859. end
  860. defp deps do
  861. [{:lager, "~> 3.2"}]
  862. end
  863. ```
  864. Example Configuration:
  865. ``` elixir
  866. # config.exs
  867. use Mix.Config
  868. # Stop lager writing a crash log
  869. config :lager, :crash_log, false
  870. config :lager,
  871. log_root: '/var/log/hello',
  872. handlers: [
  873. lager_console_backend: :info,
  874. lager_file_backend: [file: "error.log", level: :error],
  875. lager_file_backend: [file: "console.log", level: :info]
  876. ]
  877. ```
  878. There is a known issue where Elixir's Logger and Lager both contest for the
  879. Erlang `error_logger` handle if used side by side.
  880. If using both add the following to your `config.exs`:
  881. ```elixir
  882. # config.exs
  883. use Mix.Config
  884. # Stop lager redirecting :error_logger messages
  885. config :lager, :error_logger_redirect, false
  886. # Stop lager removing Logger's :error_logger handler
  887. config :lager, :error_logger_whitelist, [Logger.ErrorHandler]
  888. ```
  889. Example Usage:
  890. ``` elixir
  891. :lager.error('Some message')
  892. :lager.warning('Some message with a term: ~p', [term])
  893. ```
  894. 3.x Changelog
  895. -------------
  896. 3.8.0 - 9 August 2019
  897. * Breaking API change: Modify the `lager_rotator_behaviour` to pass in a
  898. file's creation time to `ensure_logfile/5` to be used to determine if
  899. file has changed on systems where inodes are not available (i.e.
  900. `win32`). The return value from `create_logfile/2`, `open_logfile/2` and
  901. `ensure_logfile/5` now requires ctime to be returned (#509)
  902. * Bugfix: ensure log file rotation works on `win32` (#509)
  903. * Bugfix: ensure test suite passes on `win32` (#509)
  904. * Bugfix: ensure file paths with Unicode are formatted properly (#510)
  905. 3.7.0 - 24 May 2019
  906. * Policy: Officially ending support for OTP 19 (Support OTP 20, 21, 22)
  907. * Cleanup: Fix all dialyzer errors
  908. * Bugfix: Minor changes to FSM/statem exits in OTP 22.
  909. 3.6.10 - 30 April 2019
  910. * Documentation: Fix pr_stacktrace invocation example (#494)
  911. * Bugfix: Do not count suppressed messages for message drop counts (#499)
  912. 3.6.9 - 13 March 2019
  913. * Bugfix: Fix file rotation on windows (#493)
  914. 3.6.8 - 21 December 2018
  915. * Documentation: Document the error_logger_whitelist environment variable. (#489)
  916. * Bugfix: Remove the built in handler inside of OTP 21 `logger` system. (#488)
  917. * Bugfix: Cleanup unneeded check for is_map (#486)
  918. * Bugfix: Cleanup ranch errors treated as cowboy errors (#485)
  919. * Testing: Remove OTP 18 from TravisCI testing matrix
  920. 3.6.7 - 14 October 2018
  921. * Bugfix: fix tracing to work with OTP21 #480
  922. 3.6.6 - 24 September 2018
  923. * Bugfix: When printing records, handle an improper list correctly. #478
  924. * Bugfix: Fix various tests and make some rotation code more explicit. #476
  925. * Bugfix: Make sure not to miscount messages during high-water mark check. #475
  926. 3.6.5 - 3 September 2018
  927. * Feature: Allow the console backend to redirect output to a remote node #469
  928. * Feature: is_loggble - support for severity as atom #472
  929. * Bugfix: Prevent silent dropping of messages when hwm is exceeded #467
  930. * Bugfix: rotation - default log file not deleted #474
  931. * Bugfix: Handle strange crash report from gen_statem #473
  932. * Documentation: Various markup fixes: #468 #470
  933. 3.6.4 - 11 July 2018
  934. * Bugfix: Reinstall handlers after a sink is killed #459
  935. * Bugfix: Fix platform_define matching not to break on OSX Mojave #461
  936. * Feature: Add support for installing a sys trace function #462
  937. 3.6.3 - 6 June 2018
  938. * OTP 21 support
  939. 3.6.2 - 26 April 2018
  940. * Bugfix: flush_threshold not working (#449)
  941. * Feature: Add `node` as a formatting option (#447)
  942. * Documentation: Update Elixir section with information about parse_transform (#446)
  943. * Bugfix: Correct default console configuation to use "[{level,info}]" instead (#445)
  944. * Feature: Pretty print lists of records at top level and field values with lager:pr (#442)
  945. * Bugfix: Ignore return value of lager:dispatch_log in lager.hrl (#441)
  946. 3.6.1 - 1 February 2018
  947. * Bugfix: Make a few corrections to the recent mailbox flushing changes (#436)
  948. * Bugfix: add flush options to proplist validation (#439)
  949. * Bugfix: Don't log when we dropped 0 messages (#440)
  950. 3.6.0 - 16 January 2018
  951. * Feature: Support logging with macros per level (#419)
  952. * Feature: Support custom file rotation handler; support hourly file
  953. rotation (#420)
  954. * Feature: Optionally reverse pretty stacktraces (so errors are
  955. at the top and the failed function call is at the bottom.)
  956. (#424)
  957. * Bugfix: Handle OTP 20 gen_server failure where client pid
  958. is dead. (#426)
  959. * Feature: Optionally don't flush notify messages at
  960. high water mark. (#427)
  961. * Bugfix: Handle another stacktrace format (#429)
  962. * Bugfix: Fix test failure using macros on OTP 18 (#430)
  963. * Policy: Remove all code which supports R15 (#432)
  964. 3.5.2 - 19 October 2017
  965. * Bugfix: Properly check for unicode characters in potentially deep
  966. character list. (#417)
  967. 3.5.1 - 15 June 2017
  968. * Doc fix: Missed a curly brace in an example. (#412)
  969. * Feature: Dynamic metadata functions (#392) - It is now possible to
  970. dynamically add metadata to lager messages. See the "dynamic
  971. metadata" section above for more information.
  972. * Doc fix: Add information about the "application" placeholder. (#414)
  973. 3.5.0 - 28 May 2017
  974. * Bugfix: Support OTP 20 gen_event messages (#410)
  975. * Feature: Enable console output to standard_error.
  976. Convert to proplist configuration style (like file handler)
  977. Deprecate previous configuration directives (#409)
  978. * Bugfix: Enable the event shaper to filter messages before they're
  979. counted; do not count application/supervisor start/stops
  980. toward high water mark. (#411)
  981. * Docs: Add PR guidelines; add info about the #lager chat room on freenode.
  982. 3.4.2 - 26 April 2017
  983. * Docs: Document how to make lager use UTC timestamps (#405)
  984. * Docs: Add a note about our triage cadence.
  985. * Docs: Update lager_syslog URL
  986. * Docs: Document placeholders for error_logger integration (#404)
  987. * Feature: Add hex.pm metadata and full rebar3 support.
  988. 3.4.1 - 28 March 2017
  989. * Docs: Added documentation around using lager in the context of elixir applications (#398)
  990. * Bugfix: Properly expand paths when log_root is set. (#386)
  991. * Policy: Removed R15 from Travis configuration
  992. 3.4.0 - 16 March 2017
  993. * Policy: Adopt official OTP support policy. (This is the **last** lager 3.x release
  994. that will support R15.)
  995. * Test: Fix timeouts, R15 missing functions on possibly long-running tests in Travis. (#394, #395)
  996. * Feature: capture and log metadata from error_logger messages (#397)
  997. * Feature: Expose new trace filters and enable filter composition (#389)
  998. * Feature: Log crashes from gen_fsm and gen_statem correctly (#391)
  999. * Docs: Typo in badge URL (#390)
  1000. 3.3.0 - 16 February 2017
  1001. * Docs: Fix documentation to make 'it' unambiguous when discussing asychronous
  1002. operation. (#387)
  1003. * Test: Fix test flappiness due to insufficient sanitation between test runs (#384, #385)
  1004. * Feature: Allow metadata only logging. (#380)
  1005. * Feature: Add an upper case severity formatter (#372)
  1006. * Feature: Add support for suppressing start/stop messages from supervisors (#368)
  1007. * Bugfix: Fix ranch crash messages (#366)
  1008. * Test: Update Travis config for 18.3 and 19.0 (#365)
  1009. 3.2.4 - 11 October 2016
  1010. * Test: Fix dialyzer warnings.
  1011. 3.2.3 - 29 September 2016
  1012. * Dependency: Update to goldrush 0.19
  1013. 3.2.2 - 22 September 2016
  1014. * Bugfix: Backwards-compatibility fix for `{crash_log, undefined}` (#371)
  1015. * Fix documentation/README to reflect the preference for using `false`
  1016. as the `crash_log` setting value rather than `undefined` to indicate
  1017. that the crash log should not be written (#364)
  1018. * Bugfix: Backwards-compatibility fix for `lager_file_backend` "legacy"
  1019. configuration format (#374)
  1020. 3.2.1 - 10 June 2016
  1021. * Bugfix: Recent `get_env` changes resulted in launch failure (#355)
  1022. * OTP: Support typed records for Erlang 19.0 (#361)
  1023. 3.2.0 - 08 April 2016
  1024. * Feature: Optional sink killer to shed load when mailbox size exceeds a
  1025. configurable high water mark (#346)
  1026. * Feature: Export `configure_sink/2` so users may dynamically configure
  1027. previously setup and parse transformed sinks from their own code. (#342)
  1028. * Feature: Re-enable Travis CI and update .travis.yml (#340)
  1029. * Bugfix: Fix test race conditions for Travis CI (#344)
  1030. * Bugfix: Add the atom 'none' to the log_level() type so downstream
  1031. users won't get dialyzer failures if they use the 'none' log level. (#343)
  1032. * Bugfix: Fix typo in documentation. (#341)
  1033. * Bugfix: Fix OTP 18 test failures due to `warning_map/0` response
  1034. change. (#337)
  1035. * Bugfix: Make sure traces that use the file backend work correctly
  1036. when specified in lager configuration. (#336)
  1037. * Bugfix: Use `lager_app:get_env/3` for R15 compatibility. (#335)
  1038. * Bugfix: Make sure lager uses `id` instead of `name` when reporting
  1039. supervisor children failures. (The atom changed in OTP in 2014.) (#334)
  1040. * Bugfix: Make lager handle improper iolists (#327)
  1041. 3.1.0 - 27 January 2016
  1042. * Feature: API calls to a rotate handler, sink or all. This change
  1043. introduces a new `rotate` message for 3rd party lager backends; that's
  1044. why this is released as a new minor version number. (#311)
  1045. 3.0.3 - 27 January 2016
  1046. * Feature: Pretty printer for human readable stack traces (#298)
  1047. * Feature: Make error reformatting optional (#305)
  1048. * Feature: Optional and explicit sink for error_logger messages (#303)
  1049. * Bugfix: Always explicitly close a file after its been rotated (#316)
  1050. * Bugfix: If a relative path already contains the log root, do not add it again (#317)
  1051. * Bugfix: Configure and start extra sinks before traces are evaluated (#307)
  1052. * Bugfix: Stop and remove traces correctly (#306)
  1053. * Bugfix: A byte value of 255 is valid for Unicode (#300)
  1054. * Dependency: Bump to goldrush 0.1.8 (#313)