What does the following configuration file do when implemented in Logger?
config :logger,
compile_time_purge_matching: [
[application: :abc],
[module: Sample, function: “abc/3”, level_lower_than: :error]
]
Options
- It purges all log calls from an application named :abc.
- It only keeps errors from Sample.abc/3
- Both Choice 1 and 2
- It does not do anything.