Skip to content

Commit 9dea1ca

Browse files
ycerutojaviereguiluz
authored andcommitted
Changing name convention of "logs" directory to "log"
1 parent adbc23b commit 9dea1ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
/var/cache/*
88
!var/cache/.gitkeep
99
!/var/data
10-
!/var/logs
11-
/var/logs/*
12-
!var/logs/.gitkeep
10+
!/var/log
11+
/var/log/*
12+
!var/log/.gitkeep
1313
!/var/sessions
1414
/var/sessions/*
1515
!var/sessions/.gitkeep

src/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getCacheDir(): string
5252

5353
public function getLogDir(): string
5454
{
55-
return dirname(__DIR__).'/var/logs';
55+
return dirname(__DIR__).'/var/log';
5656
}
5757

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

0 commit comments

Comments
 (0)