<div dir="ltr">hi there, <br>we are using logback in our spring boot application and all our logback related configuration is in the `logback-spring.xml` file ad we configure  `springProfile` for different environments in the xml file like this<br><br><pre style="background-color:rgb(38,50,56);color:rgb(195,206,227);font-family:Menlo;font-size:12pt"><span style="color:rgb(247,140,108)"><</span><span style="color:rgb(240,113,120)">springProfile </span><span style="color:rgb(255,203,107);font-style:italic">name</span><span style="color:rgb(195,232,141)">="local,dev"</span><span style="color:rgb(247,140,108)">><br></span><span style="color:rgb(247,140,108)">    <</span><span style="color:rgb(240,113,120)">root </span><span style="color:rgb(255,203,107);font-style:italic">level</span><span style="color:rgb(195,232,141)">="DEBUG"</span><span style="color:rgb(247,140,108)">><br></span><span style="color:rgb(247,140,108)">        <</span><span style="color:rgb(240,113,120)">appender-ref </span><span style="color:rgb(255,203,107);font-style:italic">ref</span><span style="color:rgb(195,232,141)">="console"</span><span style="color:rgb(247,140,108)">/><br></span><span style="color:rgb(247,140,108)">    </</span><span style="color:rgb(240,113,120)">root</span><span style="color:rgb(247,140,108)">><br></span><span style="color:rgb(247,140,108)"></</span><span style="color:rgb(240,113,120)">springProfile</span><span style="color:rgb(247,140,108)">><br></span></pre>after this configuration if we want to add other environment property, it must be added to this `springProfile` first otherwise our application failed to start with newly added property file.<br><br>for example if I just add a new property file called `application-uat.yml` and directly start the application with this property file, our application failed to start. for fixing this I need to add this property name in the `SpringProfile` configuration like this `<span style="color:rgb(247,140,108)"><</span><span style="color:rgb(240,113,120)">springProfile </span><span style="color:rgb(255,203,107);font-style:italic">name</span><span style="color:rgb(195,232,141)">="local,dev,uat"</span><span style="color:rgb(247,140,108)">></span>`<br><br>we think logback rather than directly block our app start should have a default value for newly added property file, do you have anything to share with us? thank you<br><br>regards,<br>yaer<br></div>