Add extra diagnostic trace for path_created_or_updated

This commit is contained in:
Lucien Greathouse
2019-01-09 13:47:58 -08:00
parent 9574f8ebd7
commit a306fa26e0

View File

@@ -87,7 +87,10 @@ impl RbxSession {
let snapshot = match maybe_snapshot {
Some(snapshot) => snapshot,
None => return,
None => {
trace!("Path resulted in no snapshot being generated.");
return;
},
};
trace!("Snapshot: {:#?}", snapshot);