Posts by Buss • 113 points
2 posts
-
4
votes1
answer2606
viewsA: How to use java LOGGER
I use slf4j’s Loggerfactory. For each class: private static final Logger LOGGER = LoggerFactory.getLogger(MinhaClasse.class); To use (I think the most used ones are info, error, debug): Ps: "{}"…
-
6
votes3
answers2884
viewsQ: REGEX - Capitalized words in the middle of the sentence
Is there any regex/replace to uppercase words in the middle of the sentence to lowercase? (Yes, I could pass everything to Lower) but there is a catch, the rule should be ignored if the word is…