@@ -154,7 +154,7 @@ function configureEnclavedMode(): EnclavedConfig {
154154 throw new Error ( `Failed to read TLS key from keyPath: ${ err . message } ` ) ;
155155 }
156156 } else if ( config . tlsKey ) {
157- logger . debug ( 'Using TLS private key from environment variable' ) ;
157+ logger . info ( 'Using TLS private key from environment variable' ) ;
158158 }
159159
160160 if ( ! config . tlsCert && config . crtPath ) {
@@ -166,7 +166,7 @@ function configureEnclavedMode(): EnclavedConfig {
166166 throw new Error ( `Failed to read TLS certificate from crtPath: ${ err . message } ` ) ;
167167 }
168168 } else if ( config . tlsCert ) {
169- logger . debug ( 'Using TLS certificate from environment variable' ) ;
169+ logger . info ( 'Using TLS certificate from environment variable' ) ;
170170 }
171171
172172 // Validate that certificates are properly loaded when TLS is enabled
@@ -323,7 +323,7 @@ export function configureMasterExpressMode(): MasterExpressConfig {
323323 throw new Error ( `Failed to read TLS key from keyPath: ${ err . message } ` ) ;
324324 }
325325 } else if ( config . tlsKey ) {
326- logger . debug ( 'Using TLS private key from environment variable' ) ;
326+ logger . info ( 'Using TLS private key from environment variable' ) ;
327327 }
328328
329329 if ( ! config . tlsCert && config . crtPath ) {
@@ -335,7 +335,7 @@ export function configureMasterExpressMode(): MasterExpressConfig {
335335 throw new Error ( `Failed to read TLS certificate from crtPath: ${ err . message } ` ) ;
336336 }
337337 } else if ( config . tlsCert ) {
338- logger . debug ( 'Using TLS certificate from environment variable' ) ;
338+ logger . info ( 'Using TLS certificate from environment variable' ) ;
339339 }
340340
341341 // Validate that certificates are properly loaded when TLS is enabled
0 commit comments