mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
9 lines
259 B
Plaintext
9 lines
259 B
Plaintext
|
// Checkerframework stubs for the jboss.logging module
|
||
|
|
||
|
package org.jboss.logging;
|
||
|
|
||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||
|
|
||
|
public interface BasicLogger {
|
||
|
void tracef(String format, @Nullable Object param1, @Nullable Object param2);
|
||
|
}
|