Make tracing 3.4 compatible and plug-in local
[egit/spearce.git] / org.eclipse.egit.core / src / org / eclipse / egit / core / internal / trace / DebugTrace.java
bloba7ecdc557320609f2e2c0e95e0142585528a9f3c
1 package org.eclipse.egit.core.internal.trace;
3 /**
4 * Just a place holder for OSGI Debug Trace support until
5 * we drop 3.4 support in EGit/JGit;
7 * TODO replace this by OSGI's DebugTrace once we drop 3.4 support
8 */
9 public interface DebugTrace {
11 /**
12 * @param location
13 * @param message
15 public void trace(String location, String message);
17 /**
18 * @param location
19 * @param message
20 * @param error
22 public void trace(String location, String message, Throwable error);