Skip to content

Commit 5e6e564

Browse files
author
Unknown
committed
feat(index): export logger module publicly
1 parent 0d2eb7e commit 5e6e564

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
import * as logger from './logger';
12
import { IUnityOptions } from './unity_cli_options';
23
import { UnityProcess } from './unity_process';
34

45
export { IUnityOptions } from './unity_cli_options';
56
export * from './unity_finder';
67
export { LinuxPlayerArch, OSXPlayerArch, WindowsPlayerArch, RendererType } from './unity_process';
78
export { UnityCrashError } from './unity_invoker';
9+
export { logger };
810

911
export function invokeUnity(options: IUnityOptions = {}): UnityProcess {
1012
return new UnityProcess().withOptions(options);

0 commit comments

Comments
 (0)