@see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
(String msg)
| 463 | * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) |
| 464 | */ |
| 465 | protected void debug(String msg) |
| 466 | { |
| 467 | if (debugOutput) |
| 468 | { |
| 469 | System.out.println("[CacheServlet] " + new Date().toString() + ": " + msg); |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | /** |
| 474 | * Cache entry definition. |
no test coverage detected