Browse Source

source: use pa_log_debug instead of pa_log, a little bit too noisy

pull/28/head
Jay Sorg 5 years ago
parent
commit
cc2453d55d
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/module-xrdp-source.c

+ 2
- 2
src/module-xrdp-source.c View File

@ -197,7 +197,7 @@ static int data_get(struct userdata *u, pa_memchunk *chunk) {
if (source_socket == NULL || source_socket[0] == '\0')
{
pa_log("Could not obtain source_socket from environment.");
pa_log_debug("Could not obtain source_socket from environment.");
/* usually it doesn't reach here. if the socket name is not given
via environment variable, use hardcoded name as fallback */
snprintf(s.sun_path, bytes,
@ -205,7 +205,7 @@ static int data_get(struct userdata *u, pa_memchunk *chunk) {
}
else
{
pa_log("Obtained source_socket from environment.");
pa_log_debug("Obtained source_socket from environment.");
snprintf(s.sun_path, bytes, "%s/%s", socket_dir, source_socket);
}
pa_log_debug("Trying to connect to %s", s.sun_path);


Loading…
Cancel
Save