I just switched to monolog and wanted to log my message to the PHP console instead of a file. This might seem obvious for some people, but it took me a little while to figure out how to do that and I …
Tag: console
Printing debug output to console in Codeception
Very thick question, but is there any way to print your own debug messages to the console in Codeception? I mean messages that have nothing to do with assertions, purely for debugging the tests themselves (e.g. like you would var_dump() a variable in any regular PHP website) I have already tried var_dump(), echo and print but to no avail. Using
How to echo to console in Laravel and Artisan?
I was curious, I’m using Laravel and Artisan for my migrations. Is there a method to output information to the console? I can’t seem to find any information on this. For example: Answer Don’t know if you are using Laravel 3 or Laravel 4, and if its also possible in Laravel 3, but i found this in the docs. EDIT