# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/s5tuxtq
如何將 Rust 日誌同時輸出到終端和文件中**
日誌記錄幾乎是每個應用程序的重要組成部分,它可以幫助我們有效地調試和跟蹤錯誤。在 Rust 中,我們可能會使用 log crate,它提供了一個日誌 facade,應用程序及其依賴項可以掛接到它。但是,log crate 不提供實際的日誌記錄實現,這意味着它不會自己將日誌寫入終端或文件。這就是 Ftail 的用武之地——它可以爲終端和文件提供簡單的、可配置的日誌記錄。設置它很簡單,只需幾行代碼就可 ⌘ Read more