void log(String message) | Displays in the Console a value (String) passed to be "message" argument. |
void log(float message) | Displays in the Console a value (float) passed to be "message" argument. |
void log(int message) | Displays in the Console a value (int) passed to be "message" argument. |
void log(long message) | Displays in the Console a value (long0 passed to be "message" argument. |
void log(double message) | Displays in the Console a value (double) passed to be "message" argument. |
void log(char message) | Displays in the Console a value (char) passed to be "message" argument. |
void log(byte message) | Displays in the Console a value (byte) passed to be "message" argument. |
void log([Error] error) | Displays in the Console a value ([Error]) passed to be "errot" argument. |
void log([Exception] exception) | Displays in the Console a value ([Exception]) passed to be "exception" argument. |
void log([Throwable] throwable) | Displays in the Console a value ([Throwable]) passed to be "throwable" argument. |
void log([Log] log) | Displays in the Console a value ([Log]) passed to be "log" argument. |
void log(String[] array) | Displays in the Console a value (String[]) passed to be "array" argument. |
void log(List\<String> list) | Displays in the Console a value (List\<String>) passed to be "list" argument. |