[imgtec-pvr-rgx-km] Fix incorrect macro usage

Accidentally dropped the log-level when I was updating the CL.

Change-Id: I591987c53f38c9d38e7a6c4f5bf0b620ff342e29
Bug: 49457
diff --git a/services/server/env/fuchsia/pvr_debug.cc b/services/server/env/fuchsia/pvr_debug.cc
index 87bde26..32bca42 100644
--- a/services/server/env/fuchsia/pvr_debug.cc
+++ b/services/server/env/fuchsia/pvr_debug.cc
@@ -126,7 +126,7 @@
 		va_start(vl, pszFormat);
 		char data[512];
 		vsnprintf(data, sizeof(data), pszFormat, vl);
-		zxlogf_etc(PVR_BUILD_DIR " at %s:%d - %s\n", pszFullFileName, ui32Line, data);
+		zxlogf_etc(log_level, PVR_BUILD_DIR " at %s:%d - %s\n", pszFullFileName, ui32Line, data);
 		va_end(vl);
 	}
 }