I use Cascade'ed Monolog and configure loggers using YAML. This is a part of my config:
formatters:
dashed:
class: Monolog\Formatter\LineFormatter
format: "%datetime%-%channel%.%level_name% - %message%\n"
This is a formatted log line:
2016-12-13 17:49:16-app.INFO - <message>
What is the right format
value for \Monolog\Formatter\LineFormatter
to get timestamp with milliseconds?