Warning: session_start(): open(/var/lib/php/sessions/sess_qj1vmrqr5iaubc2jv11nenmifr, 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
!include #1000947 // LineBuf
static void autoReportToChat() {
Class javax = getJavaX();
if (javax == null)
die("Please use newer version of JavaX.");
set(javax, "customSystemOut", new Appendable() {
new LineBuf buf;
// only using this one
public Appendable append(CharSequence cs) {
buf.append(cs.toString());
while (true) {
S s = buf.nextLine();
if (s == null) break;
reportToChat(s, true);
}
return this;
}
public Appendable append(char c) { return this; }
public Appendable append(CharSequence s, int start, int end) { return this; }
});
}