aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2021-08-18 07:41:17 +0000
committerWerner Koch <[email protected]>2021-08-18 07:41:17 +0000
commitec2f1b38980a1b60624a35707ccebb05c5524d2f (patch)
treed30963a8c8b7dfbe32981b34d64c766c50a52c06
parentw32: Move socketdir to LOCAL_APPDATA (diff)
downloadgnupg-ec2f1b38980a1b60624a35707ccebb05c5524d2f.tar.gz
gnupg-ec2f1b38980a1b60624a35707ccebb05c5524d2f.zip
common,w32: Replace log_debug by log_info for InProcessJobs
* common/exechelp-w32.c (gnupg_spawn_process_detached): Use log_info.
-rw-r--r--common/exechelp-w32.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c
index 08e4d3a47..4581ca8ce 100644
--- a/common/exechelp-w32.c
+++ b/common/exechelp-w32.c
@@ -945,14 +945,14 @@ gnupg_spawn_process_detached (const char *pgmname, const char *argv[],
else if ((info.BasicLimitInformation.LimitFlags &
JOB_OBJECT_LIMIT_BREAKAWAY_OK))
{
- log_debug ("Using CREATE_BREAKAWAY_FROM_JOB flag\n");
+ log_info ("Using CREATE_BREAKAWAY_FROM_JOB flag\n");
cr_flags |= CREATE_BREAKAWAY_FROM_JOB;
}
else if ((info.BasicLimitInformation.LimitFlags &
JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK))
{
/* The child process should automatically detach from the job. */
- log_debug ("Not using CREATE_BREAKAWAY_FROM_JOB flag; "
+ log_info ("Not using CREATE_BREAKAWAY_FROM_JOB flag; "
"JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK is set\n");
}
else
@@ -960,7 +960,7 @@ gnupg_spawn_process_detached (const char *pgmname, const char *argv[],
/* It seems that the child process must remain in the job.
* This is not necessarily an error, although it can cause premature
* termination of the child process when the job is closed. */
- log_debug ("Not using CREATE_BREAKAWAY_FROM_JOB flag\n");
+ log_info ("Not using CREATE_BREAKAWAY_FROM_JOB flag\n");
}
}