Skip to content

Commit c3f657f

Browse files
committed
chore: bugfix build of examples
1 parent f35dc42 commit c3f657f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/custom-logger/dummy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const MyLogger: Logger = {
1515

1616
export async function run(logger: Logger, endpoint: string, database: string) {
1717
setupLogger(MyLogger);
18-
// setDefaultLogger(MyLogger); // will work too
18+
setDefaultLogger(MyLogger); // will work too
1919
logger.info('Driver initializing...');
2020
const authService = getCredentialsFromEnv();
2121
const driver = new Driver({endpoint, database, authService});

0 commit comments

Comments
 (0)