@@ -213,7 +213,6 @@ public static boolean log(String text, String templateName, Exception e, int err
213213 * @param errorCode The code for the error that occured (Default is 0).
214214 * @return True if logging was successful, False if the {@link LogTemplate} does not exist.
215215 */
216- @ Deprecated
217216 public static boolean log (String text , Enum <?> templateName , Exception e , int errorCode )
218217 {
219218 return log (text , templateName .name (), e , errorCode );
@@ -251,7 +250,6 @@ public static boolean log(String text, Enum<?> templateName, Exception e)
251250 * @param templateName The name of the {@link LogTemplate} that should be used.
252251 * @return True if logging was successful, False if the {@link LogTemplate} does not exist.
253252 */
254- @ Deprecated
255253 public static boolean log (String text , String templateName )
256254 {
257255 return log (text , templateName , null );
@@ -263,7 +261,6 @@ public static boolean log(String text, String templateName)
263261 * @param template The enum that should be used as a name for the {@link LogTemplate}.
264262 * @return True if logging was successful, False if the {@link LogTemplate} does not exist.
265263 */
266- @ Deprecated
267264 public static boolean log (String text , Enum <?> template )
268265 {
269266 return log (text , template , null );
0 commit comments