add log messages

This commit is contained in:
stfm
2017-11-22 00:44:11 +01:00
parent 44aed85414
commit a5bdd8ab46

View File

@@ -2225,11 +2225,13 @@ public class TeXDoclet extends Doclet {
for (int i = 0; i < root.options().length; i++) { for (int i = 0; i < root.options().length; i++) {
if (root.options()[i][0].equalsIgnoreCase("-sourcepath")) { if (root.options()[i][0].equalsIgnoreCase("-sourcepath")) {
sourcepath = root.options()[i][1]; sourcepath = root.options()[i][1];
System.out.println("Found source path in program parameters: " + sourcepath);
} }
} }
if (sourcepath == null) { if (sourcepath == null) {
sourcepath = "."; sourcepath = ".";
System.out.println("Setting source path to: " + sourcepath);
} else if (sourcepath.startsWith("\"")) { } else if (sourcepath.startsWith("\"")) {
sourcepath = sourcepath.substring(1); sourcepath = sourcepath.substring(1);
if (sourcepath.endsWith("\"")) { if (sourcepath.endsWith("\"")) {
@@ -2240,6 +2242,7 @@ public class TeXDoclet extends Doclet {
StringTokenizer sourcepathToken = new StringTokenizer(sourcepath, ";"); StringTokenizer sourcepathToken = new StringTokenizer(sourcepath, ";");
while (sourcepathToken.hasMoreTokens()) { while (sourcepathToken.hasMoreTokens()) {
String token = sourcepathToken.nextToken(); String token = sourcepathToken.nextToken();
System.out.println("Checking source path: " + token);
if (token.equals(".")) { if (token.equals(".")) {
f = null; f = null;
} else { } else {
@@ -2267,7 +2270,7 @@ public class TeXDoclet extends Doclet {
} }
} }
} }
System.err.println("Could not determine pakckage dir.");
return null; return null;
} }