Warning: session_start(): open(/var/lib/php/sessions/sess_b5v0p2hta0lml02nc8es1q65r6, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
please include function tempInterceptPrintIfNotIntercepted. // cmodules need this
ifdef NotifyingPrintLog
static volatile new NotifyingStringBuffer local_log; // not redirected
svoid _onLoad_print() {
print_autoRotate();
}
endifdef
ifndef NotifyingPrintLog
static volatile new StringBuffer local_log; // not redirected
endifndef
ifdef print_rst
static new StringBuffer rst_printBuf;
static ReliableSingleThread rst_print = rst(r rst_print_flush);
svoid rst_print_flush() {
System.out.print(getAndClearStringBuffer(rst_printBuf));
}
endifdef
sbool printAlsoToSystemOut = true;
static volatile Appendable print_log = local_log; // might be redirected, e.g. to main bot
// in bytes - will cut to half that
static volatile int print_log_max = 1024*1024;
static volatile int local_log_max = 100*1024;
static boolean print_silent; // total mute if set
static new O print_byThread_lock;
static volatile ThreadLocal print_byThread; // special handling by thread - prefers F1
static volatile O print_allThreads;
static volatile O print_preprocess;
static void print() {
print("");
}
static A mapMethodLike print(S s, A o) {
print(combinePrintParameters(s, o));
ret o;
}
// slightly overblown signature to return original object...
static A print(A o) {
ping_okInCleanUp();
if (print_silent) return o;
S s = o + "\n";
print_noNewLine(s);
return o;
}
static void print_noNewLine(String s) {
ifndef LeanMode
try {
O f = getThreadLocal(print_byThread_dontCreate());
if (f == null) f = print_allThreads;
if (f != null)
// We do need the general callF machinery here as print_byThread is sometimes shared between modules
if (isFalse(
ifclass F1
f instanceof F1 ? f/F1.get(s) :
endif
callF(f, s))) ret;
} catch e {
System.out.println(getStackTrace(e));
}
endifndef
print_raw(s);
}
static void print_raw(String s) {
ifndef LeanMode
if (print_preprocess != null) s = (S) callF(print_preprocess, s);
s = fixNewLines(s);
endifndef
Appendable loc = local_log;
Appendable buf = print_log;
int loc_max = print_log_max;
if (buf != loc && buf != null) {
print_append(buf, s, print_log_max);
loc_max = local_log_max;
}
if (loc != null)
print_append(loc, s, loc_max);
ifdef print_rst
rst_printBuf.append(s);
rst_print.trigger();
endifdef
ifndef print_rst
if (printAlsoToSystemOut)
System.out.print(s);
endifndef
ifndef NoVMBus
vmBus_send printed(mc(), s);
endifndef
}
svoid print_autoRotate() {
ifdef NotifyingPrintLog
makeNotifyingStringBufferRotate(local_log, () -> local_log_max);
endifdef
}