Remove unused cyclic dependency from copilot crate

Move notification handling earlier so that there are less copilot messages in the log
This commit is contained in:
Mikayla Maki 2023-04-21 10:38:36 -07:00
parent 6ee0d104d6
commit 39512655aa
4 changed files with 9 additions and 10 deletions

View file

@ -143,8 +143,8 @@ pub enum LogMessage {}
#[derive(Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LogMessageParams {
pub message: String,
pub level: u8,
pub message: String,
pub metadata_str: String,
pub extra: Vec<String>,
}