mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-06 22:16:29 +03:00
Log result failures with stack traces (#282)
This feature will improve the debugging experience for developers by providing the information about *where exactly* a result has failed --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
5cc04e9cc3
commit
309d900067
21 changed files with 145 additions and 71 deletions
8
src/Attributes/StaticCallersOnlyAttribute.cs
Normal file
8
src/Attributes/StaticCallersOnlyAttribute.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace Octobot.Attributes;
|
||||
|
||||
/// <summary>
|
||||
/// Any property marked with <see cref="StaticCallersOnlyAttribute"/> should only be accessed by static methods.
|
||||
/// Such properties may be used to provide dependencies where it is not possible to acquire them through normal means.
|
||||
/// </summary>
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public sealed class StaticCallersOnlyAttribute : Attribute;
|
Loading…
Add table
Add a link
Reference in a new issue