netapi32: Downgrade another WARN and ERR to a TRACE.

This commit is contained in:
Kai Blin 2007-03-18 22:14:06 +01:00 committed by Alexandre Julliard
parent 5f8a14d5e2
commit 284683a24e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}