All Downloads are FREE. Search and download functionalities are using the official Maven repository.

refcodes-batch.1.0.2.source-code.test.job Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
#!/bin/bash

logTitle "Testing the libraries"
logHeadline "Testing the log library"
log "The log file is \"$LOG_FILE\""
logSeparator
log "The log level is \"$LOG_LEVEL\""
logSeparator
log $DEBUG "Logginging a debug message"
log $INFO "Logginging a info message"
log $WARN "Logginging a warn message"
log $ERROR "Logginging a error message"
log $FATAL "Logginging a fatal message"
logSeparator
log "Setting the log level to \"$ERROR\""
setLogLevel $ERROR
log $ERROR "The log level is \"$LOG_LEVEL\""
logSeparator
log $DEBUG "Logginging a debug message"
log $INFO "Logginging a info message"
log $WARN "Logginging a warn message"
log $ERROR "Logginging a error message"
log $FATAL "Logginging a fatal message"
logSeparator
log "Ending library tests"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy