Searched defs:log (Results 1 - 3 of 3) sorted by relevance
/opengrok/src/org/opensolaris/opengrok/util/ |
H A D | Statistics.java | 38 public void report(Logger log, String msg) { argument 41 log.log(Level.INFO, msg + " (took {0})", time_str); 44 public void report(Logger log) { argument 46 log.log(Level.INFO, "Total time: {0}", getReadableTime(stopTime)); 51 log.log(Level.INFO, "Final Memory: {0}M/{1}M",
|
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | Archive.java | 177 * @param desc The archives description (not the log message). 189 * @param desc The archives description (not the log message). 202 * @param desc The archives description (not the log message). 971 * @param log the log: a short note explaining what the revision is. 974 public Version addRevision(Object[] text, String log) argument 982 return addRevision(text, branch, log); 986 return addRevision(text, head.getVersion().next(), log); 999 * @param log the log 1002 addRevision(Object[] text, String vernum, String log) argument 1023 addRevision(Object[] text, Version vernum, String log) argument [all...] |
H A D | Node.java | 108 protected String log = ""; field in class:Node 140 this.log = other.log; 320 * Sets the log message for the node's revision. 321 * The log message is usually used to explain why the revision took place. 328 log = value.substring(0, value.length()-1); 330 log = value; 722 s.append("log" + EOL); 723 if (log.length() == 0) 726 s.append(Archive.quoteString(log [all...] |
Completed in 11 milliseconds