Archives Dec. 2, 2007
Lowering Spew Volume in Activities (Set the logging level, but what's setting it high?)
Written by
on
in
Young Coders.
Since I burned a few hours trying to track this down, I'll post the work-around... the problem is simple; Log Spew.
Productive uses Python's logging module throughout to provide debugging and informational output during development. We log enormous amounts of information at debug and info levels (about 2.5% of our total run-time is spent in ...!-->!-->
Productive Running In-situ (Network transmitting information (that's what networks do))
Written by
on
in
Young Coders.
Yesterday I managed to finish hooking up enough of the networking that the game can start while running as an activity and the status updates flow properly from the server to the clients. We did the "lobby" code all using the olpcgames wrapper's built-in functionality, with the actual game code using an ExportedGObject for efficiency ...