removed deprecated createLogger and replaced with getLogger

This commit is contained in:
Bojan Kucera 2025-06-08 12:31:29 -04:00
parent 5d8b102422
commit c10a524aa8
29 changed files with 93 additions and 136 deletions

View file

@ -7,7 +7,6 @@
import { describe, it, expect, beforeEach, afterEach } from 'bun:test';
import {
Logger,
createLogger,
getLogger,
shutdownLoggers
} from '../src';
@ -101,7 +100,6 @@ describe('Logger Integration Tests', () => {
describe('Factory Functions', () => {
it('should export factory functions', () => {
// Verify that the factory functions are exported and callable
expect(typeof createLogger).toBe('function');
expect(typeof getLogger).toBe('function');
});