Horizon – Diff between revs 1 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 3
Line 120... Line 120...
120   120  
121 try 121 try
122 { 122 {
123 await SetAutoVacuum(_cancellationToken); 123 await SetAutoVacuum(_cancellationToken);
124 } 124 }
125 catch 125 catch(Exception exception)
126 { 126 {
127 Log.Error("Unable to set auto vacuum for database."); 127 Log.Error(exception,"Unable to set auto vacuum for database.");
128 } 128 }
129 } 129 }
130 catch 130 catch (Exception exception)
131 { 131 {
132 Log.Error("Unable to create database;"); 132 Log.Error(exception,"Unable to create database;");
133 } 133 }
134 }).Wait(_cancellationToken); 134 }).Wait(_cancellationToken);
Line 135... Line 135...
135 } 135 }