fix: appwriteLogger 임시 export 추가
Some checks are pending
CI / ci (18.x) (push) Waiting to run
CI / ci (20.x) (push) Waiting to run
Deployment Monitor / pre-deployment-check (push) Waiting to run
Deployment Monitor / deployment-notification (push) Blocked by required conditions
Deployment Monitor / security-scan (push) Waiting to run
Linear Integration / Extract Linear Issue ID (push) Waiting to run
Linear Integration / Sync Pull Request Events (push) Blocked by required conditions
Linear Integration / Sync Review Events (push) Blocked by required conditions
Linear Integration / Sync Push Events (push) Blocked by required conditions
Linear Integration / Sync Issue Events (push) Blocked by required conditions
Release / Deployment Notification (push) Blocked by required conditions
Release / Rollback Preparation (push) Blocked by required conditions
Linear Integration / Notify No Linear ID Found (push) Blocked by required conditions
Linear Integration / Linear Integration Summary (push) Blocked by required conditions
Mobile Build and Release / Test and Lint (push) Waiting to run
Mobile Build and Release / Build Web App (push) Blocked by required conditions
Mobile Build and Release / Build Android App (push) Blocked by required conditions
Mobile Build and Release / Build iOS App (push) Blocked by required conditions
Mobile Build and Release / Semantic Release (push) Blocked by required conditions
Mobile Build and Release / Deploy to Google Play (push) Blocked by required conditions
Mobile Build and Release / Deploy to TestFlight (push) Blocked by required conditions
Mobile Build and Release / Notify Build Status (push) Blocked by required conditions
Release / Quality Checks (push) Waiting to run
Release / Build Verification (push) Blocked by required conditions
Release / Linear Issue Validation (push) Blocked by required conditions
Release / Semantic Release (push) Blocked by required conditions
Release / Post-Release Linear Sync (push) Blocked by required conditions
TypeScript Type Check / type-check (18.x) (push) Waiting to run
TypeScript Type Check / type-check (20.x) (push) Waiting to run
Vercel Deployment Workflow / security-check (push) Waiting to run
Vercel Deployment Workflow / build-and-test (push) Waiting to run
Vercel Deployment Workflow / deployment-notification (push) Blocked by required conditions

- Vercel 배포에서 appwriteLogger is not defined 에러 해결
- 더 이상 사용하지 않지만 Vercel 캐시 문제로 임시 export
- APPWRITE_DEPRECATED 도메인으로 구분하여 추후 제거 예정
This commit is contained in:
hansoo
2025-07-15 05:46:07 +09:00
parent b5b653f3c4
commit 7c5df3de95

View File

@@ -106,5 +106,7 @@ export const authLogger = createDomainLogger("AUTH");
export const networkLogger = createDomainLogger("NETWORK");
export const storageLogger = createDomainLogger("STORAGE");
export const supabaseLogger = createDomainLogger("SUPABASE");
// 임시: Vercel 배포 에러 방지를 위한 appwriteLogger (더 이상 사용하지 않음)
export const appwriteLogger = createDomainLogger("APPWRITE_DEPRECATED");
export default logger;