pool/web/yaamp/core/backend/functions.php
Tanguy Pruvot 0f129bdd65 blocks: avoid delayed coin save + screenlog func
in some cases, there was issues to save correctly with the coin form.
2018-07-11 01:09:43 +02:00

12 lines
218 B
PHP

<?php
/**
* Directly output Logs in screen (main/blocks/loop2)
*/
function screenlog($line)
{
$app = Yii::app();
if ($app instanceof CYiimpConsoleApp) {
$date = date('y-m-d h:i:s');
echo("$date $line\n");
}
}