- Made configs work! configs: - debug - logging - logfile - ipget_endpoint_set - ipget_endpoint_get - site_name - search_enable - post_ranking_auto - index_post_sort - comment_sync_on_write - comment_auto_sync - logging framework! loglevels: - -1 - none - 0 - basic - 10 - datahorder - 1337 - haxxer now just logging commands!
5 lines
88 B
JavaScript
5 lines
88 B
JavaScript
this.schedule = (cb, time) => {
|
|
cb()
|
|
setTimeout(this.schedule(cb, time), time*1000)
|
|
}
|