> Discover all available pages from the documentation index: https://mastra.zisheng.pro/ko/llms.txt # 로그 API Logs API는 Mastra의 시스템 로그 및 디버깅 정보에 액세스하고 쿼리하는 방법을 제공합니다. ## 로그 가져오기 선택적 필터링을 사용하여 시스템 로그를 검색합니다. ```typescript const logs = await mastraClient.listLogs({ transportId: 'transport-1', }) ``` ## 특정 실행에 대한 로그 가져오기 특정 실행 실행에 대한 로그를 검색합니다. ```typescript const runLogs = await mastraClient.getLogForRun({ runId: 'run-1', transportId: 'transport-1', }) ```