phoenix_title wx.LogNull

This class allows you to temporarily suspend logging.

All calls to the log functions during the life time of an object of this class are just ignored.

In particular, it can be used to suppress the log messages given by wxWidgets itself but it should be noted that it is rarely the best way to cope with this problem as all log messages are suppressed, even if they indicate a completely different error than the one the programmer wanted to suppress.

For instance, the example of the overview:

# There will normally be a log message if a non-existent file is
# loaded into a wx.Bitmap.  It can be suppressed with wx.LogNull
noLog = wx.LogNull()
bmp = wx.Bitmap('bogus.png')
# when noLog is destroyed the old log sink is restored
del noLog

would be better written as:

# Don't try to load the image if it doesn't exist. This avoids the
# log messages without blocking all the others.
if os.path.exists('bogus.png'):
    bmp = wx.Bitmap('bogus.png')
else:
    pass
  # ... do something else here...

class_hierarchy Class Hierarchy

Inheritance diagram for class LogNull:

method_summary Methods Summary

__init__

Suspends logging.

__enter__

__exit__


api Class API

class wx.LogNull(object)

Possible constructors:

LogNull()

This class allows you to temporarily suspend logging.


Methods

__init__(self)

Suspends logging.



__enter__(self)


__exit__(self, exc_type, exc_val, exc_tb)