Remove debug log

This commit is contained in:
Owen
2026-04-20 17:05:47 -07:00
parent 2e8d170114
commit 9f5f89c9eb

View File

@@ -34,9 +34,9 @@ export async function ensureRootApiKey() {
const envApiKey = process.env.PANGOLIN_ROOT_API_KEY;
if (!envApiKey) {
logger.debug(
"PANGOLIN_ROOT_API_KEY not set. Root API key from environment skipped."
);
// logger.debug(
// "PANGOLIN_ROOT_API_KEY not set. Root API key from environment skipped."
// );
return;
}
@@ -103,4 +103,4 @@ export async function ensureRootApiKey() {
console.error("Failed to ensure root API key:", error);
throw error;
}
}
}