github.com/l3x/learn-fp-go@v0.0.0-20171228022418-7639825d0b71/4-purely-functional/ch10-monads/01_car_steps/config.toml (about) 1 #@IgnoreInspection BashAddShebang 2 3 # Full path to the file containing the base64 car strings 4 data_filepath = "./data/cars.base64" 5 6 # Runtime environment 7 app_env = "development" 8 9 # Level options: panic, error, info, debug 10 log_level = "debug" 11 12 # The character(s) used to preface debug lines 13 log_debug_chars = ">>" 14 15 # Whether to include timestamps and log level on all log entries 16 log_verbose = true 17 18 # Enable or disable logging of utils/TimeTrack() (For benchmarking/debugging) 19 log_timetrack = true 20 21 # i18n translation file name, see github.com/nicksnyder/go-i18n 22 i18n_filename = "en-us.all.json"