mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-05-24 09:38:34 +00:00
refactor: Migrate console.error to debugLogger.warn in atCommandProcessor.ts (#12134)
This commit is contained in:
parent
064edc52f5
commit
4e6eef5882
1 changed files with 2 additions and 2 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in a new issue