Skip to content

Commit ded5382

Browse files
authored
Use Info log level for the CLI stderr (#1320)
## Changes Stderr doesn't usually imply higher log level, at least in Databricks CLI
1 parent efcb26b commit ded5382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/databricks-vscode/src/cli/CliWrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ async function runBundleCommand(
170170
logger?.info(data, {bundleOpName});
171171
},
172172
onStdError: (data: string) => {
173-
logger?.warn(data, {bundleOpName});
173+
logger?.info(data, {bundleOpName});
174174
},
175175
};
176176
const {onStdOut, onStdError} = {

0 commit comments

Comments
 (0)