Commit 49a26f3 1 parent 8ddc1a2 commit 49a26f3 Copy full SHA for 49a26f3
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class LayoutServiceImpl implements LayoutService {
15
15
const filePath = this . getLayoutPath ( layoutName ) ;
16
16
const fileExists = await fs . pathExists ( filePath ) ;
17
17
18
- logger . info ( 'getting layout' , {
18
+ logger . debug ( 'getting layout' , {
19
19
layoutName,
20
20
filePath,
21
21
fileExists,
@@ -53,7 +53,7 @@ export class LayoutServiceImpl implements LayoutService {
53
53
54
54
const filePath = this . getLayoutPath ( layoutName ) ;
55
55
56
- logger . info ( 'saving layout' , {
56
+ logger . debug ( 'saving layout' , {
57
57
layoutName,
58
58
filePath,
59
59
} ) ;
@@ -73,7 +73,7 @@ export class LayoutServiceImpl implements LayoutService {
73
73
const filePath = this . getLayoutPath ( layoutName ) ;
74
74
const fileExists = await fs . pathExists ( filePath ) ;
75
75
76
- logger . info ( 'deleting layout' , {
76
+ logger . debug ( 'deleting layout' , {
77
77
layoutName,
78
78
filePath,
79
79
fileExists,
@@ -84,6 +84,10 @@ export class LayoutServiceImpl implements LayoutService {
84
84
}
85
85
86
86
await fs . remove ( filePath ) ;
87
+
88
+ logger . debug ( 'deleted layout' , {
89
+ layoutName,
90
+ } ) ;
87
91
}
88
92
89
93
protected getLayoutPath ( name : string ) : string {
You can’t perform that action at this time.
0 commit comments