Skip to content

Commit a3ffd6f

Browse files
author
Raja Maragani
authored
Merge pull request #19 from xmairaa/test-rules
Test rules implementation
2 parents 7273e47 + 6f0ad66 commit a3ffd6f

File tree

10 files changed

+1828
-583
lines changed

10 files changed

+1828
-583
lines changed

src/main/java/com/ericsson/ei/frontend/EIFrontendApplication.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
16-
*/
16+
*/
1717
package com.ericsson.ei.frontend;
1818

1919
import java.util.ArrayList;
@@ -38,11 +38,11 @@ protected SpringApplicationBuilder configure(SpringApplicationBuilder applicatio
3838
public static final Logger log = LoggerFactory.getLogger(EIFrontendApplication.class);
3939

4040
public static void main(String[] args) {
41-
41+
4242
List<String> logLevels = new ArrayList<>();
4343
Collections.addAll(logLevels, "ALL", "DEBUG", "ERROR", "FATAL", "INFO", "TRACE", "WARN");
4444

45-
if(args != null && args.length > 0 && logLevels.contains(args[0])) {
45+
if (args != null && args.length > 0 && logLevels.contains(args[0])) {
4646
System.setProperty("logging.level.root", args[0]);
4747
System.setProperty("logging.level.org.springframework.web", args[0]);
4848
System.setProperty("logging.level.com.ericsson.ei", args[0]);
@@ -51,7 +51,7 @@ public static void main(String[] args) {
5151
System.setProperty("logging.level.org.springframework.web", "INFO");
5252
System.setProperty("logging.level.com.ericsson.ei", "INFO");
5353
}
54-
54+
5555
SpringApplication.run(EIFrontendApplication.class, args);
5656
}
5757
}

0 commit comments

Comments
 (0)