Add <code> tags to location(s) for logs.

This commit is contained in:
z3d
2009-07-16 02:48:44 +00:00
parent 24edce3daf
commit 5d40ad1749

View File

@ -34,7 +34,7 @@ public class LogsHelper extends HelperBase {
return "";
else {
str = str.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
return "Location: " + f.getAbsolutePath() + "<pre>" + str + "</pre>";
return "Location:<code> " + f.getAbsolutePath() + "</code> <pre>" + str + "</pre>";
}
}