Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Weronika Łabaj committed Nov 15, 2017
1 parent fe52c71 commit 0f6ae6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ScriptBuilderTask/ScriptBuilderTask.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<Compile Include="ExceptionExtensions.cs" />
<Compile Include="Writers\OutboxWriter.cs" />
<Compile Include="Writers\SagaWriter.cs" />
<Compile Include="ScriptBuilderTask.cs" />
<Compile Include="SqlPersistenceScriptBuilderTask.cs" />
<Compile Include="Writers\SubscriptionWriter.cs" />
<Compile Include="Writers\TimeoutWriter.cs" />
</ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/ScriptBuilderTask/SqlPersistenceScriptBuilderTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace NServiceBus.Persistence.Sql
{
public class ScriptBuilderTask : Task
public class SqlPersistenceScriptBuilderTask : Task
{
BuildLogger logger;

Expand All @@ -21,7 +21,7 @@ public class ScriptBuilderTask : Task
public override bool Execute()
{
logger = new BuildLogger(BuildEngine);
logger.LogInfo($"ScriptBuilderTask (version {typeof(ScriptBuilderTask).Assembly.GetName().Version}) Executing");
logger.LogInfo($"SqlPersistenceScriptBuilderTask (version {typeof(SqlPersistenceScriptBuilderTask).Assembly.GetName().Version}) Executing");

var stopwatch = Stopwatch.StartNew();

Expand All @@ -43,7 +43,7 @@ public override bool Execute()
}
finally
{
logger.LogInfo($" Finished ScriptBuilderTask {stopwatch.ElapsedMilliseconds}ms.");
logger.LogInfo($" Finished SqlPersistenceScriptBuilderTask {stopwatch.ElapsedMilliseconds}ms.");
}
return !logger.ErrorOccurred;
}
Expand Down

0 comments on commit 0f6ae6b

Please sign in to comment.