Changeset 117:6bbf97ddbe16

Show
Ignore:
Timestamp:
11/08/08 02:47:03 (3 years ago)
Author:
chris
Branch:
unix
Message:

move another log statement to after the logger initialization

Files:
2 modified
2 moved

Legend:

Unmodified
Added
Removed
  • Config.py

    r116 r117  
    6262                if(os.path.exists(self.__log_config_file)): 
    6363                        logging.config.fileConfig(self.__log_config_file) 
    64                         self.log.debug("Using logging configuration file %s" % self.__log_config_file) 
    6564                else: 
    6665                        print("Log configuration file [%s] not found" % self.__log_config_file) 
     
    7069 
    7170                self.log                  = logging.getLogger('Config') 
     71                self.log.debug("Using logging configuration file %s" % self.__log_config_file) 
    7272 
    7373                if(config_file): 
  • JabberAlertDevice.py

    r116 r117  
    22 
    33""" 
    4 StormXmlSiren 
    5 Copyright (C) 2008      Chris Freeze <cfreeze/cfreeze_com\> 
     4StormSiren 
     5Copyright (C) 2008  Chris Freeze <cfreeze/cfreeze_com\> 
    66 
    77Redistribution and use in source and binary forms, with or without 
     
    1010 
    11111. Redistributions of source code must retain the above copyright 
    12         notice, this list of conditions and the following disclaimer. 
     12  notice, this list of conditions and the following disclaimer. 
    13132. Redistributions in binary form must reproduce the above copyright 
    14         notice, this list of conditions and the following disclaimer in the 
    15         documentation and/or other materials provided with the distribution. 
     14  notice, this list of conditions and the following disclaimer in the 
     15  documentation and/or other materials provided with the distribution. 
    1616 
    1717THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 
     
    2828 
    2929""" 
    30 This is StormXmlSiren a program inspired by the StormSiren application 
    31 written by Roy McManus <slorf/users_sourceforge_net>.   Much like the 
    32 original StormSiren, StormXmlSiren is a simple script capable of scanning 
    33 and providing notifications of weather bulletins issued by the National  
    34 Weather Service.        StormXmlSiren supports a wide range of paging devices 
    35 and filtering of alert types per alert device.  While inspired by  
    36 StormSiren, StormXmlSiren is a complete rewrite that is capable of using 
     30This is StormSiren a program inspired by the StormSiren application 
     31written by Roy McManus <slorf/users_sourceforge_net>.  Much like the 
     32original StormSiren written by Roy McManus <slorf/users_sourceforge_net>, 
     33this program is a simple script capable of scanning and providing 
     34notifications of weather bulletins issued by the National 
     35Weather Service.  StormSiren supports a wide range of paging devices 
     36and filtering of alert types per alert device.  While inspired by 
     37StormSiren, StormSiren is a complete rewrite that is capable of using 
    3738the new CAP/XML feeds provided at http://www.weather.gov/alerts/. 
    3839 
    39 For more information there is a readme.txt located within the docs dir. 
     40For more information there is see the README.TXT file located in the root 
     41of this directory. 
    4042""" 
    4143