嗨,我很长时间以来一直怀疑是否在下面的方法(通常是辅助方法)中有一个记录器。
我们是否可以在方法中打印它,或者在调用方法的地方打印响应。
public String getAddNewUserUrl()
{
String url = null;
try
{
String mode = new ModeUtil().getMode();
String urlToGet = ("local".equalsIgnoreCase(mode) ||"staging".equalsIgnoreCase(mode)) ? "staging.url" : "live.url"
url = ResourceBundle.getBundle("ApplicationResources").getString(urlToGet);
log.info("The url is : " + url); // Can we use logs like this
}
catch(Exception e)
{
log.log( java.util.logging.Level.SEVERE , e.getMessage() , e );
log.error("Exception in the method getMode ::"+e.getMessage());
}
return url;
}