Skip to content

Commit

Permalink
Changing name convention of "logs" directory to "log"
Browse files Browse the repository at this point in the history
  • Loading branch information
yceruto authored and javiereguiluz committed Sep 1, 2017
1 parent adbc23b commit 9dea1ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
/var/cache/*
!var/cache/.gitkeep
!/var/data
!/var/logs
/var/logs/*
!var/logs/.gitkeep
!/var/log
/var/log/*
!var/log/.gitkeep
!/var/sessions
/var/sessions/*
!var/sessions/.gitkeep
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function getCacheDir(): string

public function getLogDir(): string
{
return dirname(__DIR__).'/var/logs';
return dirname(__DIR__).'/var/log';
}

public function registerBundles(): iterable
Expand Down
File renamed without changes.

0 comments on commit 9dea1ca

Please sign in to comment.