added the storage_path constant.

This commit is contained in:
Taylor Otwell
2011-07-26 22:12:20 -05:00
parent 1cf4431659
commit 306ecd3bfe
2 changed files with 2 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ return array(
'logger' => function($severity, $message)
{
System\File::append(APP_PATH.'storage/log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
System\File::append(STORAGE_PATH.'log.txt', date('Y-m-d H:i:s').' '.$severity.' - '.$message.PHP_EOL);
},
);