Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2004-09-03 21:16:18 +0400
committerJacek Konieczny <jajcus@jajcus.net>2004-09-03 21:16:18 +0400
commit561da0916e0711161a9b96b294b62afe51a6ecd2 (patch)
tree7bf913c5959eaf257008fb20eb610f3050feebd8 /CHANGES
parent741d109c2a4738d873bd48e85aeea142f151e84f (diff)
- Stream.data_in() and Stream.data_out() callbacks removed in favor of 'logging' module loggers
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index b1b4da9..df5f6c9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,13 @@
This file should describe the bigest and most important API changes.
+2004-09-03
+
+ Stream.data_in and Stream.data_out callbacks removed. Data sent and
+ received is now logged via 'logging' module to 'pyxmpp.Stream.out' and
+ 'pyxmpp.Stream.in' loggers. The raw data is available for logging
+ handlers as the first element of 'args' attribute of the log record
+ (record.args[0]).
+
2004-08-29
All debug messages are passed to the standard python 'logging' module.