source: trunk/packages/xen-3.1/xen-3.1/tools/python/logging/logging-0.4.9.2/test/log_test12.py @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

  • Property svn:executable set to *
  • Property svn:mime-type set to text/script
File size: 1.9 KB
Line 
1#!/usr/bin/env python
2#
3# Copyright 2001-2002 by Vinay Sajip. All Rights Reserved.
4#
5# Permission to use, copy, modify, and distribute this software and its
6# documentation for any purpose and without fee is hereby granted,
7# provided that the above copyright notice appear in all copies and that
8# both that copyright notice and this permission notice appear in
9# supporting documentation, and that the name of Vinay Sajip
10# not be used in advertising or publicity pertaining to distribution
11# of the software without specific, written prior permission.
12# VINAY SAJIP DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
13# ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
14# VINAY SAJIP BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
15# ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
16# IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18#
19# This file is part of the Python logging distribution. See
20# http://www.red-dove.com/python_logging.html
21#
22"""
23A test harness for the logging module. Tests HTTPHandler.
24
25Copyright (C) 2001-2002 Vinay Sajip. All Rights Reserved.
26"""
27import sys, string, logging, logging.handlers
28
29def main():
30    import pdb
31    host = "localhost:%d" % logging.handlers.DEFAULT_HTTP_LOGGING_PORT
32    gh = logging.handlers.HTTPHandler(host, '/log', 'GET')
33    ph = logging.handlers.HTTPHandler(host, '/log', 'POST')
34    logger = logging.getLogger("log_test12")
35    logger.propagate = 0
36    logger.addHandler(gh)
37    logger.addHandler(ph)
38    logging.getLogger("").setLevel(logging.DEBUG)
39    logger.info("Jackdaws love my big %s of %s", "sphinx", "quartz")
40    logger.debug("Pack my %s with twelve dozen %s", "box", "liquor jugs")
41    gh.close()
42    ph.close()
43    logger.removeHandler(gh)
44    logger.removeHandler(ph)
45
46if __name__ == "__main__":
47    main()
Note: See TracBrowser for help on using the repository browser.