Skip to content

Commit

Permalink
Use proper call to Logger#getMessageLogger
Browse files Browse the repository at this point in the history
Closes: #46251
(cherry picked from commit 06022f4)
  • Loading branch information
geoand authored and gsmet committed Feb 18, 2025
1 parent f36f2b3 commit 8464b67
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.quarkus.hibernate.orm.runtime.migration;

import java.lang.invoke.MethodHandles;
import java.util.Locale;
import java.util.Map;

Expand Down Expand Up @@ -35,7 +36,7 @@ public enum MultiTenancyStrategy {
*/
NONE;

private static final CoreMessageLogger LOG = Logger.getMessageLogger(
private static final CoreMessageLogger LOG = Logger.getMessageLogger(MethodHandles.lookup(),
CoreMessageLogger.class,
MultiTenancyStrategy.class.getName());

Expand Down

0 comments on commit 8464b67

Please sign in to comment.