Skip to content

Commit

Permalink
added default constructor for Loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
michael811125 committed Sep 22, 2023
1 parent 0bfffb8 commit 8677ccf
Show file tree
Hide file tree
Showing 11 changed files with 69 additions and 49 deletions.
15 changes: 9 additions & 6 deletions Assets/OxGFrame/AgencyCenter/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.AgencyCenter
{
[LoggerName("OxGFrame.AgencyCenter.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.AgencyCenter
{
[LoggerName("OxGFrame.AgencyCenter.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
15 changes: 9 additions & 6 deletions Assets/OxGFrame/AssetLoader/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.AssetLoader
{
[LoggerName("OxGFrame.AssetLoader.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.AssetLoader
{
[LoggerName("OxGFrame.AssetLoader.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
3 changes: 3 additions & 0 deletions Assets/OxGFrame/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## [2.7.13] - 2023-09-22
- Added default constructor for Loggers.

## [2.7.12] - 2023-09-22
- Fixed Acax GET method bug issue, download buffer is null reference if without body data.
- Modified Acax header args and body args can be null.
Expand Down
15 changes: 9 additions & 6 deletions Assets/OxGFrame/CoreFrame/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.CoreFrame
{
[LoggerName("OxGFrame.CoreFrame.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.CoreFrame
{
[LoggerName("OxGFrame.CoreFrame.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
15 changes: 9 additions & 6 deletions Assets/OxGFrame/GSIFrame/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.GSIFrame
{
[LoggerName("OxGFrame.GSIFrame.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.GSIFrame
{
[LoggerName("OxGFrame.GSIFrame.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
15 changes: 9 additions & 6 deletions Assets/OxGFrame/Hotfixer/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.Hotfixer
{
[LoggerName("OxGFrame.Hotfixer.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.Hotfixer
{
[LoggerName("OxGFrame.Hotfixer.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
15 changes: 9 additions & 6 deletions Assets/OxGFrame/MediaFrame/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.MediaFrame
{
[LoggerName("OxGFrame.MediaFrame.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.MediaFrame
{
[LoggerName("OxGFrame.MediaFrame.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
15 changes: 9 additions & 6 deletions Assets/OxGFrame/NetFrame/Scripts/Runtime/Logger.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
using OxGKit.LoggingSystem;

namespace OxGFrame.NetFrame
{
[LoggerName("OxGFrame.NetFrame.Logger")]
public class Logger : Logging { }
using OxGKit.LoggingSystem;

namespace OxGFrame.NetFrame
{
[LoggerName("OxGFrame.NetFrame.Logger")]
public class Logger : Logging
{
public Logger() { }
}
}
2 changes: 1 addition & 1 deletion Assets/OxGFrame/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "com.michaelo.oxgframe",
"displayName": "OxGFrame",
"description": "The OxGFrame is a framework based on Unity for accelerating game development. Supports multi-platform Win, OSX, Android, iOS, WebGL.",
"version": "2.7.12",
"version": "2.7.13",
"unity": "2021.3",
"license": "MIT",
"samples": [
Expand Down
4 changes: 2 additions & 2 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
"depth": 0,
"source": "git",
"dependencies": {},
"hash": "fa239e5413c3fde458d9b28eacf13be8d27ca30c"
"hash": "09509539b2afc8c9df270ebb27fd31378761439e"
},
"com.michaelo.oxgkit.utilities": {
"version": "https://github.com/michael811125/OxGKit.git?path=Assets/OxGKit/Utilities/Scripts",
"depth": 0,
"source": "git",
"dependencies": {},
"hash": "fa239e5413c3fde458d9b28eacf13be8d27ca30c"
"hash": "09509539b2afc8c9df270ebb27fd31378761439e"
},
"com.unity.2d.animation": {
"version": "7.0.10",
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,10 +526,6 @@ video_urlset 127.0.0.1/video/

---

### 歡迎加入一起交流 (QQ 315262286)

---

## License

This library is under the MIT License.

0 comments on commit 8677ccf

Please sign in to comment.