Skip to content

Commit

Permalink
kernel: Fix logger overlapping domains
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Oct 17, 2024
1 parent 90fc71f commit 7fceedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kernel/src/logger.erl
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ equal to or below the configured log level.
-type level() :: emergency | alert | critical | error |
warning | notice | info | debug.
-doc "A log report.".
-type report() :: map() | [{atom(),term()}].
-type report() :: map() | nonempty_list({atom(),term()}).
-doc """
A fun which converts a [`report()`](`t:report/0`) to a format string and
arguments, or directly to a string.
Expand Down

0 comments on commit 7fceedd

Please sign in to comment.