We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49274f commit 4186b42Copy full SHA for 4186b42
src/headlessutils.cpp
@@ -37,7 +37,6 @@ std::string outputDir;
37
void asyncfunc(uv_async_t* handle) {
38
Nan::HandleScope scope;
39
v8::Isolate* isolate = v8::Isolate::GetCurrent();
40
- printf("outputdir in asyncfunc is %s\n", outputDir.c_str());
41
v8::Local<v8::Value> argv[] = { v8::String::NewFromUtf8(isolate, outputDir.c_str()) };
42
headless::zipFunction->Call(1, argv);
43
}
@@ -55,7 +54,6 @@ void stop() {
55
54
56
57
void zip(const char* dir) {
58
- printf("Headless utils: Outputdir = %s\n", dir);
59
outputDir = std::string(dir);
60
uv_async_send(&async_zip);
61
0 commit comments