1
0

Switch from stdout log to latest log MOD-595 (#964)

* Switch from stdout log to latest log

* remove std capture

* Remove unused functions
This commit is contained in:
Carter
2024-01-05 11:00:08 -08:00
committed by GitHub
parent f6a697780b
commit 9702dae19d
6 changed files with 11 additions and 212 deletions

View File

@@ -241,14 +241,6 @@ pub async fn get_latest_log_cursor(
get_generic_live_log_cursor(profile_path, "latest.log", cursor).await
}
#[tracing::instrument]
pub async fn get_std_log_cursor(
profile_path: ProfilePathId,
cursor: u64, // 0 to start at beginning of file
) -> crate::Result<LatestLogCursor> {
get_generic_live_log_cursor(profile_path, "latest_stdout.log", cursor).await
}
#[tracing::instrument]
pub async fn get_generic_live_log_cursor(
profile_path: ProfilePathId,