update to 1.0.1

* added some config lines
This commit is contained in:
Jannik 2019-03-17 00:33:18 +01:00
parent f9f0564a91
commit 08b6b2603f
3 changed files with 17 additions and 6 deletions

View File

@ -39,4 +39,4 @@ compileTestKotlin {
}
group 'org.mosad'
version '1.0.0'
version '1.0.1'

View File

@ -47,7 +47,7 @@ class APIController {
// Controller stuff
var logger: Logger = LoggerFactory.getLogger(APIController::class.java)
private val startTime = System.currentTimeMillis() / 1000
private val apiVersion = "1.0.0"
private val apiVersion = "1.0.1"
// hso parser links (hardcoded)
private val mensaLink = "https://www.swfr.de/de/essen-trinken/speiseplaene/mensa-offenburg/"

View File

@ -1,4 +1,15 @@
# Specify the level for spring boot and hibernate's loggers
# Available levels are: TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF
logging.level.org.springframework.web = INFO
#logging.level.org.hibernate = ERROR
# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
# LOGGING
logging.level.org.springframework.web=INFO
# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.address=127.0.0.1
server.port=8080