회피 디버그 수정

This commit is contained in:
2018-07-26 17:13:27 +09:00
parent 4acb6304df
commit 2a3ebae4ae
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ function MessageBox($str)
function LogText($prefix, $variable)
{
$text = sprintf('%s : %s'."\n", $prefix, var_export($variable, true));
$text = sprintf('%s : %s'."\r\n", $prefix, var_export($variable, true));
file_put_contents(ROOT.'/d_log/dbg_logs.txt', $text, FILE_APPEND);
}