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
When debugging, it’s important to distinguish between **client-side errors** (errors in the user’s browser) and **server-side errors** (errors from your backend services). Client-side issues appear in the browser console, while server-side issues are recorded by your running containers.
9
+
10
+
### Client Logs
11
+
12
+
To inspect client-side errors and warnings, open your browser’s developer tools and check the **Console** tab.
13
+
14
+
### Server Logs
15
+
16
+
Server logs are available through Docker. For example, you can view logs for a specific service with:
17
+
18
+
```bash
19
+
docker compose logs api
20
+
```
21
+
22
+
The API and Gateway logs are in JSON format, so you can filter and inspect them using jq. For example, to show only error-level logs from the last 24 hours:
0 commit comments