added newline to output

This commit is contained in:
Andreas 2019-09-19 14:03:36 +02:00
parent 87c8e7391d
commit d8e00627fd

View File

@ -30,7 +30,7 @@ class TestAction{
} }
public static function returnLogAsText(){ public static function returnLogAsText(){
for($i = 0; $i<sizeof(self::$log); $i++){ for($i = 0; $i<sizeof(self::$log); $i++){
echo("[".self::$log[$i]['stats']."] ".self::$log[$i]['message']); echo("[".self::$log[$i]['stats']."] ".self::$log[$i]['message']."\n");
} }
} }
} }