mirror of
https://github.com/friendica/friendica
synced 2024-11-18 21:43:40 +00:00
Merge pull request #7291 from MrPetovan/bug/2209-update-default-log-location
Update default log location
This commit is contained in:
commit
cd2f390df6
2 changed files with 4 additions and 2 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -6,7 +6,6 @@ favicon.*
|
||||||
*.out
|
*.out
|
||||||
*.version*
|
*.version*
|
||||||
home.html
|
home.html
|
||||||
|
|
||||||
*~
|
*~
|
||||||
robots.txt
|
robots.txt
|
||||||
|
|
||||||
|
@ -74,3 +73,6 @@ venv/
|
||||||
|
|
||||||
#ignore filesystem storage default path
|
#ignore filesystem storage default path
|
||||||
/storage
|
/storage
|
||||||
|
|
||||||
|
#Ignore log folder
|
||||||
|
/log
|
||||||
|
|
|
@ -74,7 +74,7 @@ return [
|
||||||
// logfile (String)
|
// logfile (String)
|
||||||
// The logfile for storing logs.
|
// The logfile for storing logs.
|
||||||
// Can be a full path or a relative path to the Friendica home directory
|
// Can be a full path or a relative path to the Friendica home directory
|
||||||
'logfile' => 'friendica.log',
|
'logfile' => 'log/friendica.log',
|
||||||
|
|
||||||
// loglevel (String)
|
// loglevel (String)
|
||||||
// The loglevel for all logs.
|
// The loglevel for all logs.
|
||||||
|
|
Loading…
Reference in a new issue