Re: [xSocket-develop] Bug with IConnection.write function on FreeBSD
Status: Inactive
Brought to you by:
grro
|
From: Gregor R. <gre...@go...> - 2007-09-12 10:29:17
|
Hi, it seems that your log config hasn't been set to log finest level. To do this see http://www.exampledepot.com/egs/java.util.logging/Props.html or se= t the log level programmatically like: Handler[] hdl =3D Logger.getLogger("").getHandlers(); for (Handler handler : hdl) { if (handler instanceof ConsoleHandler) { handler.setFormatter(new LogFormatter()); handler.setLevel(FINEST); } } Logger logger =3D Logger.getLogger("org.xsocket"); logger.setLevel(FINEST); The log output would help very much. Gregor 2007/9/12, teran <ter...@ma...>: > > Both Winxp and FreeBSD output the same log: > > 11.09.2007 18:10:33 > org.xsocket.stream.MultithreadedServer$AcceptorCallback onConnected > INFO: server listening on /0.0.0.0:6666 () > > thats all > > > Hi, > > > this behaviour hasn't been reported yet. Could you send the log > > report (level FINEST, namespace "org.xsocket") for both, FreeBSD and > WinXP. > > > Gregor > > > > >> -----Urspr=FCngliche Nachricht----- > >> Von: teran <ter...@ma...> > >> Gesendet: 11.09.07 14:43:07 > >> An: xso...@li... > >> Betreff: [xSocket-develop] Bug with IConnection.write function on > FreeBSD > > > > >> Hello! > >> I try to run MultithreadedServer application on the FreeBSD, but when > >> connection.write(blablabla) happends the program is blocked on this > line > >> about one minute and then return from this function without sending > >> data. In the Windows Xp all ok. Is it my bug or something else? > > >> Thank you. > > > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2005. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> xSocket-develop mailing list > >> xSo...@li... > >> https://lists.sourceforge.net/lists/listinfo/xsocket-develop > > > > -- > Tertichnikov Andrey > > |