[Scummvm-git-logs] scummvm master -> fdf6bbd42b95e7cf0894924674d0dfeda8d7179c

rvanlaar noreply at scummvm.org
Tue Nov 29 00:02:01 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
fdf6bbd42b DIRECTOR: LINGO: lighten debug output for buildbot


Commit: fdf6bbd42b95e7cf0894924674d0dfeda8d7179c
    https://github.com/scummvm/scummvm/commit/fdf6bbd42b95e7cf0894924674d0dfeda8d7179c
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-11-29T01:01:47+01:00

Commit Message:
DIRECTOR: LINGO: lighten debug output for buildbot

The Director buildbot runs with the debugflag `fewframesonly`.

Each stdout/stderr line is send from a buildbot worker
to the master, parsed to check for errors and then stored
in a database. The less lines, the faster runs become.

Changed paths:
    engines/director/lingo/lingo-codegen.cpp


diff --git a/engines/director/lingo/lingo-codegen.cpp b/engines/director/lingo/lingo-codegen.cpp
index cab87207e6b..8bfb65a36ec 100644
--- a/engines/director/lingo/lingo-codegen.cpp
+++ b/engines/director/lingo/lingo-codegen.cpp
@@ -443,7 +443,7 @@ bool LingoCompiler::visitHandlerNode(HandlerNode *node) {
 	COMPILE_LIST(node->stmts);
 	code1(LC::c_procret);
 
-	if (debugChannelSet(-1, kDebugFewFramesOnly) || debugChannelSet(1, kDebugCompile))
+	if (debugChannelSet(1, kDebugCompile))
 		debug("define handler \"%s\" (len: %d)", node->name->c_str(), _currentAssembly->size() - 1);
 
 	Common::Array<Common::String> *argNames = new Common::Array<Common::String>;




More information about the Scummvm-git-logs mailing list