All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.jdbc.postgresql.runtime.graal.DriverSubstitutions Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.jdbc.postgresql.runtime.graal;

import java.util.Properties;

import org.postgresql.Driver;

import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;

@TargetClass(Driver.class)
public final class DriverSubstitutions {

    @Substitute
    private void setupLoggerFromProperties(final Properties props) {
        //We don't want it to mess with the logger config
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy