Commit 284683a2 authored by Kai Blin's avatar Kai Blin Committed by Alexandre Julliard

netapi32: Downgrade another WARN and ERR to a TRACE.

parent 5f8a14d5
......@@ -553,7 +553,7 @@ NetQueryDisplayInformation(
}
default:
ERR("Invalid level %d is specified\n", Level);
TRACE("Invalid level %d is specified\n", Level);
return ERROR_INVALID_LEVEL;
}
return NERR_Success;
......@@ -690,7 +690,7 @@ NET_API_STATUS WINAPI NetUserModalsGet(
*pbuffer = NULL;
return NERR_InternalError;
default:
WARN("Invalid level %d is specified\n", level);
TRACE("Invalid level %d is specified\n", level);
*pbuffer = NULL;
return ERROR_INVALID_LEVEL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment