Skip to content

Commit d49732d

Browse files
authored
Merge pull request #14286 from nextcloud/chore/ai/improve-live-transcription-docs
chore(AI/LiveTranscription): add logs view and download info
2 parents 747fc68 + 0735dd5 commit d49732d

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
@@ -62,6 +62,32 @@ Requirements
6262
Actual requirements will vary based on factors such as the number of concurrent calls, audio quality, and selected languages.
6363
Please do thorough testing to confirm your hardware meets your needs.
6464

65+
Logs
66+
----
67+
68+
| Warnings and errors are logged to the main Nextcloud server logs.
69+
| To inspect the detailed JSON logs for lower levels, the following commands can help.
70+
71+
To view docker stdout/err logs:
72+
73+
.. code-block:: bash
74+
75+
docker logs -f -n400 nc_app_live_transcription
76+
77+
| To view the JSON logs:
78+
| 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.
79+
80+
.. code-block:: bash
81+
82+
docker exec -it nc_app_live_transcription tail -f -n400 /nc_app_live_transcription_data/logs/lt.log
83+
84+
To download the JSON logs:
85+
86+
.. code-block:: bash
87+
88+
docker cp nc_app_live_transcription:/nc_app_live_transcription_data/logs/ /tmp/nc_app_live_transcription_logs
89+
90+
6591
App store
6692
---------
6793

0 commit comments

Comments
 (0)