(byte[] buffer)
| 486 | } |
| 487 | |
| 488 | private void copyLogConfResource(byte[] buffer) throws IOException { |
| 489 | if (Chars.equalsIgnoreCaseNc("false", System.getProperty(CONTAINERIZED_SYSTEM_PROPERTY))) { |
| 490 | copyResource(rootDirectory, false, buffer, "conf/non_containerized_log.conf", "conf/log.conf", null); |
| 491 | } else { |
| 492 | copyResource(rootDirectory, false, buffer, "conf/log.conf", null); |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | private void createHelloFile(String helloMsg) { |
| 497 | final File helloFile = new File(rootDirectory, "hello.txt"); |
no test coverage detected