Hi guys, do you have any idea why this `[35mairbyt...
# contributing-to-airbyte
e
Hi guys, do you have any idea why this
[35mairbyte-server      |[0m 2021-04-20 19:25:00 [1;31mERROR[m i.a.s.RequestLogger(filter):105 - {workspace_app_root=/tmp/workspace/server/logs} - REQ 172.20.0.1 POST 500 /api/v1/source_definitions/list_latest - {}
could happen? got 500 from
source_definitions/list_latest
and where should I look for logs?
u
@Mason Wheeler is working on this I believe
u
I ran into a similar issue yesterday. You have to connect to
bash
in the Docker container, cd to
/tmp/workspace/server/logs
there, and look at the logs. You can also go into
airbyte-server/src/main/java/io/airbyte/server/errors/UncaughtExceptionMapper.java
and change it so that the logger logs the exception at priority
error
, which will make sure the error gets logged to your output.
u
Thanks @Mason Wheeler, unfortunately logs folder has only access logs, which gives me only the error above. I have changed level of message in
airbyte-server/src/main/java/io/airbyte/server/errors/UncaughtExceptionMapper.java
to
error
, but I still don’t any output from it. @s Is there any other logs folder?