Below is the example snippet how to use logger with info similarly u can use for other levels too debug/error.import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Model(adaptables = SlingHttpServletRequest.class)
public class GetUrl {
private static final Logger LOG = LoggerFactory.getLogge...