Skip to content

Commit a247084

Browse files
:|
1 parent 401f710 commit a247084

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

TransactionProcessor.Mobile/UIServices/ShellNavigationService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private async Task NavigateTo(String route) {
200200
await Shell.Current.GoToAsync(route);
201201
}
202202
catch(Exception e) {
203-
Logger.LogError("Error navigating to {route}", e);
203+
Logger.LogError($"Error navigating to {route}", e);
204204
}
205205
}
206206

@@ -214,7 +214,7 @@ private async Task NavigateTo(String route,IDictionary<String,Object> parameters
214214
}
215215
catch (Exception e)
216216
{
217-
Logger.LogError("Error navigating to {route}", e);
217+
Logger.LogError($"Error navigating to {route} (String route,IDictionary<String,Object> parameters)", e);
218218
}
219219
}
220220

@@ -226,7 +226,7 @@ private async Task NavigateTo(ContentPage page){
226226
}
227227
catch (Exception e)
228228
{
229-
Logger.LogError("Error navigating to {route}", e);
229+
Logger.LogError($"Error navigating to page (ContentPage page))", e);
230230
}
231231
}
232232

0 commit comments

Comments
 (0)