MCPcopy Index your code
hub / github.com/codenameone/CodenameOne / append

Function append

scripts/run-javascript-headless-browser.mjs:30–37  ·  view source on GitHub ↗
(line)

Source from the content-addressed store, hash-verified

28let suiteFinished = false;
29
30function append(line) {
31 const text = `[playwright] ${line}\n`;
32 if (logFile) {
33 fs.appendFileSync(logFile, text, 'utf8');
34 } else {
35 process.stdout.write(text);
36 }
37}
38
39const profileWorker = process.env.CN1_JS_PROFILE_WORKER === '1';
40const remoteDebugPort = Number(process.env.CN1_JS_CDP_PORT || '9242');

Callers 3

startWorkerProfilerFunction · 0.70
beginFunction · 0.70

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected