Source code for mattermostautodriver.endpoints.logs

from .base import Base


[docs]class Logs(Base):
[docs] def download_system_logs(self): """Download system logs `Read in Mattermost API docs (logs - DownloadSystemLogs) <https://api.mattermost.com/#tag/logs/operation/DownloadSystemLogs>`_ """ return self.client.get("""/api/v4/logs/download""")