Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note about printing debug logs #1684

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add note about printing debug logs
  • Loading branch information
ShirleyDenkberg authored Jan 14, 2025
commit 58d2036e103e23e518da0756a2ce68da2c6302b8
2 changes: 2 additions & 0 deletions docs/tutorials/tut-integration-ui.md
Original file line number Diff line number Diff line change
@@ -366,6 +366,8 @@ except Exception as e:
```
If any errors occur during the execution of our code, show those errors to the user and also return an error.

**NOTE:** demisto.debug must be used to print debug logs. Using a print statement can cause unexpected exceptions and errors.

### Start at Main
```python
if __name__ in ('__main__', '__builtin__', 'builtins'):
Loading