X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=python%2Fovs%2Ffatal_signal.py;h=dd989a09740ab81ab28befce4dbc5055681992be;hb=4000658b1a893485c163d19f50b51fbe942765e4;hp=f2edc8598aba8d50ab898cd475d75b01f45712e8;hpb=26bb0f31299d3f8eb06551d6a219846929c27149;p=openvswitch diff --git a/python/ovs/fatal_signal.py b/python/ovs/fatal_signal.py index f2edc859..dd989a09 100644 --- a/python/ovs/fatal_signal.py +++ b/python/ovs/fatal_signal.py @@ -13,11 +13,13 @@ # limitations under the License. import atexit -import logging import os import signal +import ovs.vlog + _hooks = [] +vlog = ovs.vlog.Vlog("fatal-signal") def add_hook(hook, cancel, run_at_exit): @@ -67,8 +69,7 @@ def unlink_file_now(file): Returns 0 if successful, otherwise a positive errno value.""" error = _unlink(file) if error: - logging.warning("could not unlink \"%s\" (%s)" - % (file, os.strerror(error))) + vlog.warn("could not unlink \"%s\" (%s)" % (file, os.strerror(error))) remove_file_to_unlink(file) return error