Skip to content

Commit 510fcfc

Browse files
committed
remove logs
1 parent 63cfbae commit 510fcfc

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/main/java/es/in2/vcverifier/config/I18nConfig.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import java.util.Locale;
1111
import org.springframework.web.servlet.LocaleResolver;
1212

13-
@Slf4j
1413
@Configuration
1514
public class I18nConfig implements WebMvcConfigurer {
1615
@Bean
@@ -22,8 +21,6 @@ public LocaleResolver localeResolver(FrontendConfig frontendConfig) {
2221
Locale.forLanguageTag("ca")
2322
));
2423

25-
log.info("FrontendConfig defaultLang: {}", frontendConfig.getDefaultLang());
26-
2724
r.setDefaultLocale(Locale.forLanguageTag(frontendConfig.getDefaultLang()));
2825
return r;
2926
}

src/main/java/es/in2/vcverifier/controller/LoginQrController.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import java.util.Base64;
2020
import java.util.Locale;
2121

22-
@Slf4j
2322
@Controller
2423
@RequiredArgsConstructor
2524
public class LoginQrController {
@@ -53,7 +52,6 @@ public String showQrLogin(@RequestParam("authRequest") String authRequest, @Requ
5352
} catch (Exception e) {
5453
throw new QRCodeGenerationException(e.getMessage());
5554
}
56-
log.info("Browser requested locale: {}", locale);
5755
String language = locale.getLanguage().toLowerCase();
5856
return "login-" + language;
5957
}

0 commit comments

Comments
 (0)