MCPcopy Index your code
hub / github.com/questdb/questdb / copyLogConfResource

Method copyLogConfResource

core/src/main/java/io/questdb/Bootstrap.java:488–494  ·  view source on GitHub ↗
(byte[] buffer)

Source from the content-addressed store, hash-verified

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");

Callers 2

BootstrapMethod · 0.95
extractConfDirMethod · 0.95

Calls 3

equalsIgnoreCaseNcMethod · 0.95
copyResourceMethod · 0.95
getPropertyMethod · 0.80

Tested by

no test coverage detected