Skip to content

Commit

Permalink
Merge pull request #239 from fraymangroup/error_details
Browse files Browse the repository at this point in the history
Log error details when failed to create database
  • Loading branch information
ferventcoder committed Apr 12, 2016
2 parents 6996cc4 + 6ec0962 commit 176bec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion product/roundhouse/databases/DefaultDatabase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public virtual bool create_database_if_it_doesnt_exist(string custom_create_data
{
Log.bound_to(this).log_a_warning_event_containing(
"{0} with provider {1} does not provide a facility for creating a database at this time.{2}{3}",
GetType(), provider, Environment.NewLine, ex.Message);
GetType(), provider, Environment.NewLine, ex.to_string());
}

return database_was_created;
Expand Down

0 comments on commit 176bec7

Please sign in to comment.