mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 12:52:27 +00:00
remove debug statement
This commit is contained in:
@@ -36,14 +36,12 @@ where
|
||||
{
|
||||
type Inner = Option<String>;
|
||||
Ok(if let Some(input) = Inner::deserialize(deserializer)? {
|
||||
dbg!(&input);
|
||||
Some(
|
||||
NaiveDateTime::parse_from_str(&input, UTC_DATE_TIME)
|
||||
.map_err(|err| serde::de::Error::custom(err.to_string()))?
|
||||
.and_utc(),
|
||||
)
|
||||
} else {
|
||||
dbg!("NONE");
|
||||
None
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user