added a missing 'enter' to a message

Esse commit está contido em:
Felipe
2012-04-09 18:12:36 -03:00
commit a2f5fc53b7
2 arquivos alterados com 4 adições e 3 exclusões
+3 -3
Ver Arquivo
@@ -38,7 +38,7 @@ class MindLog {
case self::LOG_TYPE_USER:{
if(strtolower($_MIND->conf['log_user_interaction'])){
if(!@file_put_contents(_MINDSRC_.\LOGS_DIR.'user.log', $msg."\n", FILE_APPEND)){
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!";
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!\n";
}
}
break;
@@ -46,14 +46,14 @@ class MindLog {
case self::LOG_TYPE_PROJECT:{
if(strtolower($_MIND->conf['log_project_interaction'])){
if(@file_put_contents(_MINDSRC_.\LOGS_DIR.'project.log', $msg."\n", FILE_APPEND)){
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!";
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!\n";
}
}
break;
}
default:{
if(!@file_put_contents(_MINDSRC_.\LOGS_DIR.'sys.log', $msg."\n", FILE_APPEND)){
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!";
echo "ERROR: failed trying to create log! please, check the writting permissions for "._MINDSRC_.\LOGS_DIR."!\n";
}
break;
}