Skip to content

Commit 581d9ca

Browse files
authored
Merge pull request #14288 from nextcloud/backport/14286/stable32
[stable32] chore(AI/LiveTranscription): add logs view and download info
2 parents 1146ae9 + 73bc887 commit 581d9ca

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

admin_manual/ai/app_live_transcription.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,32 @@ Requirements
6767
Actual requirements will vary based on factors such as the number of concurrent calls, audio quality, and selected languages.
6868
Please do thorough testing to confirm your hardware meets your needs.
6969

70+
Logs
71+
----
72+
73+
| Warnings and errors are logged to the main Nextcloud server logs.
74+
| To inspect the detailed JSON logs for lower levels, the following commands can help.
75+
76+
To view docker stdout/err logs:
77+
78+
.. code-block:: bash
79+
80+
docker logs -f -n400 nc_app_live_transcription
81+
82+
| To view the JSON logs:
83+
| The logs are rotated when file size exceeds 20 MiB. The older log files are named ``lt.log.1``, ``lt.log.2``, and so on.
84+
85+
.. code-block:: bash
86+
87+
docker exec -it nc_app_live_transcription tail -f -n400 /nc_app_live_transcription_data/logs/lt.log
88+
89+
To download the JSON logs:
90+
91+
.. code-block:: bash
92+
93+
docker cp nc_app_live_transcription:/nc_app_live_transcription_data/logs/ /tmp/nc_app_live_transcription_logs
94+
95+
7096
App store
7197
---------
7298

0 commit comments

Comments
 (0)