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

io.ray.serve.util.MessageFormatter Maven / Gradle / Ivy

There is a newer version: 2.39.0
Show newest version
package io.ray.serve.util;

/** Ray Serve common log tool. */
public class MessageFormatter {

  public static String format(String messagePattern, Object... args) {
    return org.slf4j.helpers.MessageFormatter.arrayFormat(messagePattern, args).getMessage();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy