File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Documentation of API endpoints can be found on [docs.tibiadata.com](https://docs
3232
3333Here is a summary of the TibiaData API versions
3434
35- > ** v4** is under development \
35+ > ** v4** is released _ (since 1st December 2024 ) _ \
3636> ** v3** is deprecated _ (since 31rd January 2024)_ \
3737> ** v2** is deprecated _ (since 30rd April 2022)_ \
3838> ** v1** is deprecated _ (since 30rd April 2018)_
Original file line number Diff line number Diff line change @@ -78,16 +78,14 @@ func main() {
7878 }
7979
8080 // Setting tibiadata-application to log much less if DEBUG_MODE is false (default is false)
81- if ! getEnvAsBool ("DEBUG_MODE" , false ) {
82- log .Printf ("[info] TibiaData API debug-mode: disabled" )
83- } else {
81+ if getEnvAsBool ("DEBUG_MODE" , false ) {
8482 // Setting debug to true for more logging
8583 TibiaDataDebug = true
86- log .Printf ("[info] TibiaData API debug-mode: enabled" )
8784
8885 // Logging user-agent string
89- log .Printf ("[debug] TIbiaData API User-Agent: %s" , TibiaDataUserAgent )
86+ log .Printf ("[debug] TibiaData API User-Agent: %s" , TibiaDataUserAgent )
9087 }
88+ log .Printf ("[info] TibiaData API debug-mode: %t" , TibiaDataDebug )
9189
9290 // Starting the webserver
9391 runWebServer ()
You can’t perform that action at this time.
0 commit comments