This method allows you to output debug messages only when debugging is on. This will allow you to add a debug option to your app, which by default can be left off for performance. However, when you need debugging information, a simple switch can enable it and provide you with detailed logging.
(String msg)
| 466 | * @param msg The message to output. |
| 467 | */ |
| 468 | public static void log(String msg) { |
| 469 | log(null, msg, LogLevel.DEBUG, null); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * This method allows you to output debug messages only when debugging is on. This will allow |
no outgoing calls