When using commands we have actions / services that logs different states. It would be great to prevent logging this to a log file (when using docker all logs are visible to user using stderr) when using command (called by user, not in schedule) and output it directly to user
Problem is detecting if the command was called via artisan.
Current state
At this moment there is partially working solution.
Proposal
This can be done by replacing LogInterface with console output (currently we have this)
Also it would be great to make the output nicer (like trying to group same stuff with "similar" context)
Problem
When using commands we have actions / services that logs different states. It would be great to prevent logging this to a log file (when using docker all logs are visible to user using stderr) when using command (called by user, not in schedule) and output it directly to user
Problem is detecting if the command was called via artisan.
Current state
At this moment there is partially working solution.
Proposal