![]() |
NS3-GUI-HELPER V1.2.0
A code generator for NS-3 Scripts
|
Public Member Functions | |
| LoggingHelper () | |
Static Public Member Functions | |
| static void | setLogLevel (LogLevel level) |
| static LogLevel | getLogLevel () |
| static int | getLogLevelPriority () |
| static int | getLogLevelPriority (LogLevel level) |
| static void | LogError (String msg) |
| static void | LogDebug (String msg) |
| static void | LogInfo (String msg) |
| static void | LogFunction (String msg) |
| static void | LogLogic (String msg) |
| static void | Log (String msg) |
to enable the debugging for the application, it will help in quick turning on and off for debugging while observing from the command line
Definition at line 19 of file LoggingHelper.java.
| Helpers.LoggingHelper.LoggingHelper | ( | ) |
Definition at line 61 of file LoggingHelper.java.
|
static |
to get the log level for the app
Definition at line 87 of file LoggingHelper.java.
|
static |
to get the priority number for current log level
Definition at line 97 of file LoggingHelper.java.
|
static |
to get the priority number for the desired log level
| level | the desired log level |
Definition at line 108 of file LoggingHelper.java.
|
static |
to write the normal level log information
| msg | the msg that will be printed as normal level log |
Definition at line 213 of file LoggingHelper.java.
|
static |
to write the debug level log information
| msg | the msg that will be printed as debug level log |
Definition at line 141 of file LoggingHelper.java.
|
static |
to write the error level log information
| msg | the msg that will be printed as error level log |
Definition at line 123 of file LoggingHelper.java.
|
static |
to write the function level log information
| msg | the msg that will be printed as function level log |
Definition at line 177 of file LoggingHelper.java.
|
static |
to write the info level log information
| msg | the msg that will be printed as info level log |
Definition at line 159 of file LoggingHelper.java.
|
static |
to write the logic level log information
| msg | the msg that will be printed as logic level log |
Definition at line 195 of file LoggingHelper.java.
|
static |
to set the log level for the entire app
| level | The desired log level |
Definition at line 77 of file LoggingHelper.java.