@@ -433,6 +433,7 @@ public class Project implements ResourceFactory {
* @param message The text to log. Should not be <code>null</code>.
* @param throwable The exception causing this log, may be <code>null</code>.
* @param msgLevel The log priority level to use.
* @since 1.7
*/
public void log(String message, Throwable throwable, int msgLevel) {
fireMessageLogged(this, message, throwable, msgLevel);
@@ -454,6 +455,7 @@ public class Project implements ResourceFactory {
* @param message The text to log. Should not be <code>null</code>.
* @param throwable The exception causing this log, may be <code>null</code>.
* @param msgLevel The log priority level to use.
* @since 1.7
*/
public void log(Task task, String message, Throwable throwable, int msgLevel) {
fireMessageLogged(task, message, throwable, msgLevel);
@@ -477,6 +479,7 @@ public class Project implements ResourceFactory {
* @param message The text to log. Should not be <code>null</code>.
* @param throwable The exception causing this log, may be <code>null</code>.
* @param msgLevel The log priority level to use.
* @since 1.7
*/
public void log(Target target, String message, Throwable throwable,
int msgLevel) {
@@ -2196,6 +2199,7 @@ public class Project implements ResourceFactory {
* @param message The message to send. Should not be <code>null</code>.
* @param throwable The exception that caused this message. May be <code>null</code>.
* @param priority The priority of the message.
* @since 1.7
*/
protected void fireMessageLogged(Project project, String message,
Throwable throwable, int priority) {
@@ -2227,6 +2231,7 @@ public class Project implements ResourceFactory {
* @param message The message to send. Should not be <code>null</code>.
* @param throwable The exception that caused this message. May be <code>null</code>.
* @param priority The priority of the message.
* @since 1.7
*/
protected void fireMessageLogged(Target target, String message,
Throwable throwable, int priority) {
@@ -2257,6 +2262,7 @@ public class Project implements ResourceFactory {
* @param message The message to send. Should not be <code>null</code>.
* @param throwable The exception that caused this message. May be <code>null</code>.
* @param priority The priority of the message.
* @since 1.7
*/
protected void fireMessageLogged(Task task, String message,
Throwable throwable, int priority) {