@@ -579,6 +579,72 @@ export const config: {
579579 ignoreVersionMismatch: import (" @kbn/config-schema/target/types/types" ).ConditionalType <false , boolean , boolean >;
580580 }>;
581581 };
582+ logging: {
583+ appenders: import (" @kbn/config-schema" ).Type <Readonly <{} & {
584+ layout: Readonly <{} & {
585+ kind: " json" ;
586+ }> | Readonly <{
587+ pattern? : string | undefined ;
588+ highlight? : boolean | undefined ;
589+ } & {
590+ kind: " pattern" ;
591+ }>;
592+ kind: " console" ;
593+ }> | Readonly <{} & {
594+ path: string ;
595+ layout: Readonly <{} & {
596+ kind: " json" ;
597+ }> | Readonly <{
598+ pattern? : string | undefined ;
599+ highlight? : boolean | undefined ;
600+ } & {
601+ kind: " pattern" ;
602+ }>;
603+ kind: " file" ;
604+ }> | Readonly <{
605+ legacyLoggingConfig? : any ;
606+ } & {
607+ kind: " legacy-appender" ;
608+ }>>;
609+ loggers: import (" @kbn/config-schema" ).ObjectType <{
610+ appenders: import (" @kbn/config-schema" ).Type <string []>;
611+ context: import (" @kbn/config-schema" ).Type <string >;
612+ level: import (" @kbn/config-schema" ).Type <import (" ./logging/log_level" ).LogLevelId >;
613+ }>;
614+ loggerContext: import (" @kbn/config-schema" ).ObjectType <{
615+ appenders: import (" @kbn/config-schema" ).Type <Map <string , Readonly <{} & {
616+ layout: Readonly <{} & {
617+ kind: " json" ;
618+ }> | Readonly <{
619+ pattern? : string | undefined ;
620+ highlight? : boolean | undefined ;
621+ } & {
622+ kind: " pattern" ;
623+ }>;
624+ kind: " console" ;
625+ }> | Readonly <{} & {
626+ path: string ;
627+ layout: Readonly <{} & {
628+ kind: " json" ;
629+ }> | Readonly <{
630+ pattern? : string | undefined ;
631+ highlight? : boolean | undefined ;
632+ } & {
633+ kind: " pattern" ;
634+ }>;
635+ kind: " file" ;
636+ }> | Readonly <{
637+ legacyLoggingConfig? : any ;
638+ } & {
639+ kind: " legacy-appender" ;
640+ }>>>;
641+ loggers: import (" @kbn/config-schema" ).Type <Readonly <{} & {
642+ context: string ;
643+ appenders: string [];
644+ level: import (" ./logging/log_level" ).LogLevelId ;
645+ }>[]>;
646+ }>;
647+ };
582648};
583649
584650// @public
0 commit comments