Skip to content

Instantly share code, notes, and snippets.

@lazerl0rd
Created September 12, 2023 13:34
Show Gist options
  • Save lazerl0rd/c32294a0e8d98a0ecc4d4be8426e6ee8 to your computer and use it in GitHub Desktop.
Save lazerl0rd/c32294a0e8d98a0ecc4d4be8426e6ee8 to your computer and use it in GitHub Desktop.
Logging
public void SARU(Object... objects) {
List<String> strings = new ArrayList<String>();
for (int i = 0; i < objects.length; i++) {
strings.set(i, String.valueOf(objects[i]));
}
System.out.println("SARU - " + strings);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment