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

io.deephaven.benchmark.util.Log Maven / Gradle / Ivy

The newest version!
/* Copyright (c) 2022-2023 Deephaven Data Labs and Patent Pending */
package io.deephaven.benchmark.util;

// Basic log (worry about formatting later)
public class Log {
    static public void info(String formattedMsg, Object... values) {
        System.out.printf(formattedMsg, values);
        System.out.println();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy