mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-28 23:09:13 +00:00
HHH-13520 Deprecate mutators on SqlStatementLogger
This commit is contained in:
parent
0387090bba
commit
3483d7c022
@ -55,7 +55,11 @@ public boolean isLogToStdout() {
|
||||
* Enable (true) or disable (false) logging to stdout.
|
||||
*
|
||||
* @param logToStdout True to enable logging to stdout; false to disable.
|
||||
*
|
||||
* @deprecated Will likely be removed:
|
||||
* Should either become immutable or threadsafe.
|
||||
*/
|
||||
@Deprecated
|
||||
public void setLogToStdout(boolean logToStdout) {
|
||||
this.logToStdout = logToStdout;
|
||||
}
|
||||
@ -64,6 +68,11 @@ public boolean isFormat() {
|
||||
return format;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will likely be removed:
|
||||
* Should either become immutable or threadsafe.
|
||||
*/
|
||||
@Deprecated
|
||||
public void setFormat(boolean format) {
|
||||
this.format = format;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user