|
15 | 15 | // |
16 | 16 | // |
17 | 17 |
|
18 | | -using System; |
19 | | -using System.Collections.Generic; |
20 | | -using System.Linq; |
21 | | -using System.Text; |
22 | | -using System.Threading.Tasks; |
| 18 | +namespace Microcks.Testcontainers.Helpers; |
23 | 19 |
|
24 | | -namespace Microcks.Testcontainers.Helpers |
| 20 | +/// <summary> |
| 21 | +/// Configuration constants for Microcks Testcontainers. |
| 22 | +/// </summary> |
| 23 | +public class ConfigurationConstants |
25 | 24 | { |
26 | | - public class ConfigurationConstants |
27 | | - { |
28 | | - /// <summary> |
29 | | - /// Environment variable name used to configure Microcks logging level for the Microcks package. |
30 | | - /// </summary> |
31 | | - public const string MicrocksLoggingLevelEnvVar = "LOGGING_LEVEL_IO_GITHUB_MICROCKS"; |
| 25 | + /// <summary> |
| 26 | + /// Environment variable name used to configure Microcks logging level for the Microcks package. |
| 27 | + /// </summary> |
| 28 | + public const string MicrocksLoggingLevelEnvVar = "LOGGING_LEVEL_IO_GITHUB_MICROCKS"; |
32 | 29 |
|
33 | | - /// <summary> |
34 | | - /// Environment variable value for enabling DEBUG logging. |
35 | | - /// </summary> |
36 | | - public const string DebugLogLevelEnvVar = "DEBUG"; |
| 30 | + /// <summary> |
| 31 | + /// Environment variable value for enabling DEBUG logging. |
| 32 | + /// </summary> |
| 33 | + public const string DebugLogLevelEnvVar = "DEBUG"; |
37 | 34 |
|
38 | | - /// <summary> |
39 | | - /// Environment variable name used by Quarkus to configure console log level. |
40 | | - /// </summary> |
41 | | - public const string QuarkusConsoleLogLevelEnvVar = "QUARKUS_LOG_CONSOLE_LEVEL"; |
| 35 | + /// <summary> |
| 36 | + /// Environment variable name used by Quarkus to configure console log level. |
| 37 | + /// </summary> |
| 38 | + public const string QuarkusConsoleLogLevelEnvVar = "QUARKUS_LOG_CONSOLE_LEVEL"; |
42 | 39 |
|
43 | | - /// <summary> |
44 | | - /// Environment variable name used by Quarkus to configure the Microcks category log level. |
45 | | - /// </summary> |
46 | | - public const string QuarkusMicrocksCategoryLogLevelEnvVar = "QUARKUS_LOG_CATEGORY__IO_GITHUB_MICROCKS__LEVEL"; |
47 | | - } |
| 40 | + /// <summary> |
| 41 | + /// Environment variable name used by Quarkus to configure the Microcks category log level. |
| 42 | + /// </summary> |
| 43 | + public const string QuarkusMicrocksCategoryLogLevelEnvVar = "QUARKUS_LOG_CATEGORY__IO_GITHUB_MICROCKS__LEVEL"; |
48 | 44 | } |
0 commit comments