netapi32: Downgrade another WARN and ERR to a TRACE.
This commit is contained in:
parent
5f8a14d5e2
commit
284683a24e
|
@ -553,7 +553,7 @@ NetQueryDisplayInformation(
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ERR("Invalid level %d is specified\n", Level);
|
TRACE("Invalid level %d is specified\n", Level);
|
||||||
return ERROR_INVALID_LEVEL;
|
return ERROR_INVALID_LEVEL;
|
||||||
}
|
}
|
||||||
return NERR_Success;
|
return NERR_Success;
|
||||||
|
@ -690,7 +690,7 @@ NET_API_STATUS WINAPI NetUserModalsGet(
|
||||||
*pbuffer = NULL;
|
*pbuffer = NULL;
|
||||||
return NERR_InternalError;
|
return NERR_InternalError;
|
||||||
default:
|
default:
|
||||||
WARN("Invalid level %d is specified\n", level);
|
TRACE("Invalid level %d is specified\n", level);
|
||||||
*pbuffer = NULL;
|
*pbuffer = NULL;
|
||||||
return ERROR_INVALID_LEVEL;
|
return ERROR_INVALID_LEVEL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue