moved cache, db, logs, and sessions to the storage directory.

This commit is contained in:
Taylor Otwell
2011-06-24 23:03:22 -05:00
parent 3985a98f60
commit 739068b00d
8 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ class Log {
// -----------------------------------------------------
// Create the yearly and monthly directories if needed.
// -----------------------------------------------------
static::make_directory($directory = APP_PATH.'logs/'.date('Y'));
static::make_directory($directory = APP_PATH.'storage/logs/'.date('Y'));
static::make_directory($directory .= '/'.date('m'));
// -----------------------------------------------------