X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver-testcase%2Fframework.qc;h=f874b616b25a8045311c028bf9abde739d1f84e7;hb=6ddac53e429edfca2f00c0966dcee6a825b10826;hp=6ec1756ed643851ff2ed574822960e63a2e798f3;hpb=0f3709f96ff607455d69dc4844e39a8ea0587675;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server-testcase/framework.qc b/qcsrc/server-testcase/framework.qc index 6ec1756ed..f874b616b 100644 --- a/qcsrc/server-testcase/framework.qc +++ b/qcsrc/server-testcase/framework.qc @@ -1,4 +1,4 @@ -void dprint(string s, ...) = #25; +void LOG_TRACE(string s, ...) = #25; string ftos(float f) = #26; string vtos(vector v) = #27; void error(string e) = #10; @@ -7,7 +7,7 @@ float test(); void spawnfunc_worldspawn() { float r; - dprint("TESTCASE: START\n"); + LOG_TRACE("TESTCASE: START\n"); r = test(); if(r == 1) error("TESTCASE: PASS");