Skip to content

Commit

Permalink
Remove wrong .cs in .sln
Browse files Browse the repository at this point in the history
Set GetLogFactory as internal.
  • Loading branch information
claudiamurialdo committed Sep 11, 2023
1 parent 1e13260 commit 3c14450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions dotnet/DotNetStandardClasses.sln
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,6 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GXAzureStorage", "src\dotnetcore\Providers\Storage\GXAzureStorage\GXAzureStorage.csproj", "{BF72FAF5-3A7C-41B6-A27F-9BE049290356}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{1D6F1776-FF4B-46C2-9B3D-BC46CCF049DC}"
ProjectSection(SolutionItems) = preProject
src\dotnetcore\GxNetCoreStartup\Startup.cs = src\dotnetcore\GxNetCoreStartup\Startup.cs
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GxEncryptCMD", "src\dotnetframework\GxEncryptCMD\GxEncryptCMD.csproj", "{E2CC404A-3AE4-4CE9-84DC-0EA6078F69E3}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ public interface IGXLogProvider : ILoggerFactory
ILoggerFactory GetLoggerFactory();
}

public static class GXLogService
internal static class GXLogService
{
private static string LOG_SERVICE = "Log";

public static ILoggerFactory GetLogFactory()
internal static ILoggerFactory GetLogFactory()
{
IGXLogProvider gxLogProvider = null;
GXService providerService = GXServices.Instance?.Get(LOG_SERVICE);
Expand Down

0 comments on commit 3c14450

Please sign in to comment.