mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-06 06:55:04 +00:00
Use string interpolation in debug output
This commit is contained in:
parent
7aaa4ed25e
commit
c0d3635317
19 changed files with 47 additions and 47 deletions
|
|
@ -26,7 +26,7 @@ namespace MapControl.Caching
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.WriteLine("SQLiteCache.GetAsync({0}): {1}", key, ex.Message);
|
||||
Debug.WriteLine($"SQLiteCache.GetAsync({key}): {ex.Message}");
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
@ -43,7 +43,7 @@ namespace MapControl.Caching
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Debug.WriteLine("SQLiteCache.SetAsync({0}): {1}", key, ex.Message);
|
||||
Debug.WriteLine($"SQLiteCache.SetAsync({key}): {ex.Message}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue