Displaying 1 result from an estimated 1 matches for "xend_debug_log".
2006 Oct 25
2
Re: [Xen-staging] [xen-unstable] [XEND] Open xend-debug.log in append mode.
...> 2006 +0100
> +++ b/tools/python/xen/xend/server/SrvDaemon.py Wed Oct 25 10:27:03
> 2006 +0100
> @@ -106,12 +106,12 @@ class Daemon:
> os.close(2)
> if XEND_DEBUG:
> os.open(''/dev/null'', os.O_RDONLY)
> - os.open(XEND_DEBUG_LOG, os.O_WRONLY|os.O_CREAT)
> + os.open(XEND_DEBUG_LOG, os.O_WRONLY|os.O_CREAT|
> os.O_APPEND)
> os.dup(1)
> else:
> os.open(''/dev/null'', os.O_RDWR)
> os.dup(0)
> - os.open(XEND_DEBUG_LOG, os....