File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,18 +45,18 @@ export class PromptManager {
4545
4646 this . ensureDirectoryExists ( resolvedConfigDir , 'main config directory' ) ;
4747
48- console . info ( `Using config directory: ${ resolvedConfigDir } ` ) ;
48+ console . error ( `Using config directory: ${ resolvedConfigDir } ` ) ;
4949
5050 this . initializeValueStorage ( resolvedConfigDir ) ;
5151
52- console . info ( 'PromptManager initialized with' , Object . keys ( this . prompts ) . length , 'prompts' ) ;
52+ console . error ( 'PromptManager initialized with' , Object . keys ( this . prompts ) . length , 'prompts' ) ;
5353 }
5454
5555 private ensureDirectoryExists ( directoryPath : string , description : string ) : void {
5656 try {
5757 const createdPath = fs . mkdirSync ( directoryPath , { recursive : true } ) ;
5858 if ( createdPath ) {
59- console . info ( `Created ${ description } : ${ directoryPath } ` ) ;
59+ console . error ( `Created ${ description } : ${ directoryPath } ` ) ;
6060 }
6161 } catch ( err ) {
6262 const error = err as Error ;
You can’t perform that action at this time.
0 commit comments