Skip to content

Commit dcadabf

Browse files
committed
Remove logger from project
1 parent 79339f4 commit dcadabf

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/project/src/project.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { pathExists } from '@ionic/utils-fs';
2-
import { Logger } from '@ionic/cli-framework-output';
32
import { join } from 'path';
43

54
import { AndroidProject } from './android/project';
@@ -24,8 +23,7 @@ export class MobileProject {
2423

2524
constructor(
2625
public projectRoot: string,
27-
public config: MobileProjectConfig = {},
28-
public logger: Logger | null = null
26+
public config: MobileProjectConfig = {}
2927
) {
3028
this.vfs = new VFS();
3129
this.config.projectRoot = projectRoot;
@@ -41,10 +39,6 @@ export class MobileProject {
4139
}
4240
}
4341

44-
getLogger() {
45-
return this.logger;
46-
}
47-
4842
async detectFramework(): Promise<Framework | null> {
4943
const frameworks = [
5044
FlutterFramework,

0 commit comments

Comments
 (0)