Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java')
-rw-r--r--org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java b/org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java
index c74aa3be71..c8c97a5944 100644
--- a/org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java
+++ b/org.eclipse.egit.core/src/org/eclipse/egit/core/internal/trace/GitTraceLocation.java
@@ -22,7 +22,9 @@ public enum GitTraceLocation implements ITraceLocation {
/** Core */
CORE("/debug/core"), //$NON-NLS-1$
/** IndexDiffCache */
- INDEXDIFFCACHE("/debug/core/indexdiffcache"); //$NON-NLS-1$
+ INDEXDIFFCACHE("/debug/core/indexdiffcache"), //$NON-NLS-1$
+ /** JSch logging */
+ JSCH("/debug/core/jsch"); //$NON-NLS-1$
/**
* Initialize the locations

Back to the top