;-----------------------LOGGING------------------------- ;EMERG = 0; // Emergency: system is unusable ;ALERT = 1; // Alert: action must be taken immediately ;CRIT = 2; // Critical: critical conditions ;ERR = 3; // Error: error conditions ;WARN = 4; // Warning: warning conditions ;NOTICE = 5; // Notice: normal but significant condition ;INFO = 6; // Informational: informational messages ;DEBUG = 7; // Debug: debug messages [production] accounting.logging.enabled = true ;enable/disable logging accounting.logging.logPriorityLowerEqualTo = 6 ;only log records with priority greater than value accounting.php.display_errors.enabled = true accounting.php.error_reporting.type = E_ALL accounting.php.memory_limit = 12288M accounting.run.is_run = false accounting.notifications.recipient.email.name = "Accounting Run Watchers" accounting.notifications.recipient.email.address = "{{ ACCOUNTING_NOTIFICATIONS_RECIPIENT_EMAIL }}" accounting.notifications.recipient.techemail.name = "Tech Accounting Run Watchers" accounting.notifications.recipient.techemail.address = "{{ ACCOUNTING_NOTIFICATIONS_RECIPIENT_TECH_EMAIL }}" ;Queue configs queue.queueAdapter = ApolloStomp queue.host = 192.168.30.178 queue.virtualhost = "kalimdor" queue.port = 61616 queue.username = "admin" queue.password = "admin" ;Cache settings for the script cache.memcached.host = {{ MEMCACHE_HOST }}; cache.memcached.port = {{ MEMCACHE_PORT }}; ;SNS topic arns sns.topicarn.script.info = "{{ ORCHARD_ASNS_TOPICARN_INFO }}" sns.topicarn.script.loadaccounting = {{ SNS_TOPICARN_SCRIPT_LOADACCOUNTING }} ; Read only DB accounting.read_only.adapter = "mysql" accounting.read_only.host = {{ MYSQL_HOST_DB_SLAVE }} accounting.read_only.port = 3306 accounting.read_only.username = {{ MYSQL_USER_DB_SLAVE }} accounting.read_only.password = {{ MYSQL_PASSWORD_DB_SLAVE }} accounting.read_only.dbname = "art_relations" accounting.read_only.charset = "utf8mb4" accounting.mutex_path = "/tmp" [development : production] [testing : development]