refactor: Migrate console.error to debugLogger.warn in atCommandProcessor.ts (#12134)

This commit is contained in:
Allen Hutchison
2025-10-28 10:16:47 -07:00
committed by GitHub
parent 064edc52f5
commit 4e6eef5882

View File

@@ -281,7 +281,7 @@ export async function handleAtCommand({
);
}
} catch (globError) {
console.error(
debugLogger.warn(
`Error during glob search for ${pathName}: ${getErrorMessage(globError)}`,
);
onDebugMessage(
@@ -294,7 +294,7 @@ export async function handleAtCommand({
);
}
} else {
console.error(
debugLogger.warn(
`Error stating path ${pathName}: ${getErrorMessage(error)}`,
);
onDebugMessage(