RingLogger.grep
You're seeing just the function
grep
, go back to RingLogger module for more information.
Specs
grep(Regex.t() | String.t(), [client_option()]) :: :ok | {:error, term()}
Run a regular expression on each entry in the log and print out the matchers.
For example:
iex> RingLogger.grep(~r/something/) :ok
Options include:
- Options from
attach/1
:pager
- a function for printing log messages to the console. Defaults toIO.binwrite/2
.