We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc140f7 commit bfc916eCopy full SHA for bfc916e
src/main/java/io/supertokens/storage/postgresql/output/Logging.java
@@ -166,6 +166,10 @@ public static void stopLogging(Start start) {
166
if (getInstance(start) == null) {
167
return;
168
}
169
+ getInstance(start).infoLogger.getLoggerContext().stop();
170
+ getInstance(start).errorLogger.getLoggerContext().stop();
171
+ getInstance(start).infoLogger.getLoggerContext().getStatusManager().clear();
172
+ getInstance(start).errorLogger.getLoggerContext().getStatusManager().clear();
173
getInstance(start).infoLogger.detachAndStopAllAppenders();
174
getInstance(start).errorLogger.detachAndStopAllAppenders();
175
0 commit comments