ofp-errors: Rename "OF" to "OF1.0+", "NX" to "NX1.0+".
[openvswitch] / python / ovs / fatal_signal.py
index f2edc8598aba8d50ab898cd475d75b01f45712e8..dd989a09740ab81ab28befce4dbc5055681992be 100644 (file)
 # 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