1 18 package org.osgi.service.log; 19 20 import org.osgi.framework.ServiceReference; 21 22 41 public interface LogService { 42 48 public static final int LOG_ERROR = 1; 49 56 public static final int LOG_WARNING = 2; 57 64 public static final int LOG_INFO = 3; 65 72 public static final int LOG_DEBUG = 4; 73 74 91 public void log(int level, String message); 92 93 112 public void log(int level, String message, Throwable exception); 113 114 134 public void log(ServiceReference sr, int level, String message); 135 136 154 public void log(ServiceReference sr, int level, String message, 155 Throwable exception); 156 } 157 | Popular Tags |