You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/recipes/troubleshooting.md
+7-6
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@
4
4
"title": "Troubleshooting Lucee Server problems",
5
5
"id": "troubleshooting",
6
6
"categories": [
7
-
"server"
7
+
"server",
8
+
"debugging"
8
9
],
9
10
"description": "A guide to diagnosing problems with Lucee",
10
11
"keywords": [
@@ -70,15 +71,15 @@ On Windows
70
71
71
72
```batch
72
73
set LUCEE_LOGGING_FORCE_APPENDER=console
73
-
set LUCEE_LOGGING_FORCE_LEVEL=info # or trace|debug
74
+
set LUCEE_LOGGING_FORCE_LEVEL=info # or trace, or debug
74
75
75
76
```
76
77
77
78
On Linux
78
79
79
80
```bash
80
81
export LUCEE_LOGGING_FORCE_APPENDER=console
81
-
export LUCEE_LOGGING_FORCE_LEVEL=info # or trace, or debug
82
+
export LUCEE_LOGGING_FORCE_LEVEL=info # or trace, or debug
82
83
```
83
84
84
85
This will override writing to your logs to files and instead it will stream all the logs out to the console. Changing the `LUCEE_LOGGING_FORCE_LEVEL` is optional, as it can be quite verbose, but it provide useful clues when something isn't working.
@@ -89,9 +90,9 @@ Hopefully, this guide will help you navigate around the Lucee and Tomcat logs, w
89
90
90
91
### Reaching out for help.
91
92
92
-
Please first check whatever search engine or LLM, you prefer and/or search the [https://dev.lucee.org](https://dev.lucee.org) forum and our issue tracking system [https://luceeserver.atlassian.net/](https://luceeserver.atlassian.net/)
93
+
Please first check whatever search engine or LLM, you prefer and/or search the [https://dev.lucee.org](https://dev.lucee.org)Developer forum and our issue tracking system [https://luceeserver.atlassian.net/](https://luceeserver.atlassian.net/) Jira.
93
94
94
-
If you can't find a solution to your problem, please post to the dev forum first and include all the relevant details
95
+
If you can't find a solution to your problem, please post to the dev forum first and include all the relevant details.
95
96
96
97
Ask youself, if you were assiting someone else with your problem, what questions would you ask when you read your support request before you press send.
97
98
@@ -102,4 +103,4 @@ Ask youself, if you were assiting someone else with your problem, what questions
102
103
103
104
Plus whether you are using an older install which has been upgraded, or a fresh installation.
104
105
105
-
If you find any relevant exceptions / stacktraces, please include them, not just the exception message.
106
+
If you find any relevant exceptions / stacktraces, please include them, not just the exception message.
0 commit comments