chore: remove deprecated createLogger alias from @bete/shared/logger

Zero usages found across the codebase. Safe to delete.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-02 21:27:07 +07:00
co-authored by Claude Opus 4.8
parent 19028cf244
commit 543be63503
-8
View File
@@ -29,11 +29,3 @@ export type CustomLogger = Logger;
export function createChildLogger(context: string) {
return rootLogger.child({ context });
}
/**
* Alias for createChildLogger for backwards compatibility.
* @deprecated Use createChildLogger instead.
*/
export function createLogger(context: string) {
return createChildLogger(context);
}