Skip to content

Commit

Permalink
[Improve] logging
Browse files Browse the repository at this point in the history
[Refactor] Assembler.Synchronize
[Refactor] Read method of CdpServicesDal and WspDal to serialize read on reference data and iteration data
  • Loading branch information
samatrhea committed Apr 8, 2018
1 parent 780340b commit 462e172
Show file tree
Hide file tree
Showing 24 changed files with 801 additions and 751 deletions.
4 changes: 2 additions & 2 deletions CDP4Common.NetCore.Tests/CDP4Common.NetCore.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Choose>
<When Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">
<ItemGroup>
<PackageReference Include="CDP4Common-CE" Version="1.1.0-rc1" />
<PackageReference Include="CDP4Common-CE" Version="1.1.1" />
</ItemGroup>
</When>

Expand All @@ -30,5 +30,5 @@
<PackageReference Include="NUnit.Console" Version="3.8.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion CDP4Common.Tests/CDP4Common.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Choose>
<When Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">
<ItemGroup>
<PackageReference Include="CDP4Common-CE" Version="1.1.0-rc1" />
<PackageReference Include="CDP4Common-CE" Version="1.1.1" />
</ItemGroup>
</When>

Expand Down
2 changes: 1 addition & 1 deletion CDP4Common/CDP4Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net45;net451;net452;net46;net461;net462;net47;netstandard1.6;netstandard2.0</TargetFrameworks>
<Company>RHEA System S.A.</Company>
<Title>CDP4Common Community Edition</Title>
<Version>1.1.0-rc1</Version>
<Version>1.1.1</Version>
<Description>CDP4 Common Class Library that contains DTOs, POCOs</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron</Authors>
Expand Down
2 changes: 1 addition & 1 deletion CDP4Common/Helpers/PocoThingFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ internal static T Get<T>(this ConcurrentDictionary<Tuple<Guid, Guid?>, Lazy<Thin
return cache.Get<T>(firstKey);
}

logger.Error("The {0} was not found in the cache: {1}", typeof(T).Name, key.Item1);
logger.Debug("The {0} was not found in the cache: {1}", typeof(T).Name, key.Item1);
return null;
}

Expand Down
2 changes: 1 addition & 1 deletion CDP4Dal.NetCore.Tests/CDP4Dal.NetCore.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Choose>
<When Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">
<ItemGroup>
<PackageReference Include="CDP4Dal-CE" Version="1.1.0-rc1" />
<PackageReference Include="CDP4Dal-CE" Version="1.1.1" />
</ItemGroup>
</When>

Expand Down
2 changes: 1 addition & 1 deletion CDP4Dal.Tests/CDP4Dal.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Choose>
<When Condition="'$(Configuration)'=='Debug' or '$(Configuration)'=='Release'">
<ItemGroup>
<PackageReference Include="CDP4Dal-CE" Version="1.1.0-rc1" />
<PackageReference Include="CDP4Dal-CE" Version="1.1.1" />
</ItemGroup>
</When>

Expand Down
Loading

0 comments on commit 462e172

Please sign in to comment.