/* * constants.h * * Created on: Feb 24, 2019 * Author: ezra */ #ifndef CORE_CONSTANTS_H_ #define CORE_CONSTANTS_H_ #ifndef NDEBUG #define LOG_PATH "log.txt" #define CONFIG_PATH "piscan.config" #else #define LOG_PATH "~/piscan.log" #define CONFIG_PATH "~/piscan.config" #endif #endif /* CORE_CONSTANTS_H_ */