From d91ece9086133b78f192fe0126c0f9ef44c0a5b0 Mon Sep 17 00:00:00 2001 From: kyle-ds <51097593+kyle-ds@users.noreply.github.com> Date: Wed, 19 Apr 2023 09:45:26 -0700 Subject: [PATCH] Update general-troubleshooting-steps.md Clarify single vs all troubleshooting --- faq/general-troubleshooting-steps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/faq/general-troubleshooting-steps.md b/faq/general-troubleshooting-steps.md index ec9270e7..0febb314 100644 --- a/faq/general-troubleshooting-steps.md +++ b/faq/general-troubleshooting-steps.md @@ -25,8 +25,8 @@ permalink: /faq/general-troubleshooting-steps.html - Linux, `/opt/dynamsoft/DynamsoftService/log` 2. Set the log level - - For only one client machine, go to the application with Dynamic Web TWAIN integrated, press F12 to open the development tools, switch to "console" tab and enter the command "DWObject.LogLevel = 1" to enable the debugger mode. - - For all client machines, set [ `LogLevel` ]({{site.info}}api/WebTwain_Util.html#loglevel) to 1 in your code. This property should be set as soon as the `WebTwain` instance is created. For example, in the event `Dynamsoft_OnReady` + Option A - Single client machine troubleshooting - go to the application with Dynamic Web TWAIN integrated, press F12 to open the development tools, switch to "console" tab and enter the command "DWObject.LogLevel = 1" to enable the debugger mode. + Option B - For all client machines (application wide) - set [ `LogLevel` ]({{site.info}}api/WebTwain_Util.html#loglevel) to 1 in your code. This property should be set as soon as the `WebTwain` instance is created. For example, in the event `Dynamsoft_OnReady` ```javascript function Dynamsoft_OnReady() { DWObject = Dynamsoft.DWT.GetWebTwain("dwtcontrolContainer"); @@ -41,4 +41,4 @@ permalink: /faq/general-troubleshooting-steps.html - On macOS, the log files are in `Go > Applications > Dynamsoft > DynamsoftServicex64_17 > {installed version No.} > log` - On Linux, the log files are in `/opt/dynamsoft/DynamsoftServicex64_17/log` -5. Set log level back to the default value (0) to disable the debugger mode, otherwise the operation speed will be affected. \ No newline at end of file +5. Set log level back to the default value (0) to disable the debugger mode, otherwise the operation speed will be affected.