/

General Settings

The content of this article is also available as a video tutorial.

First steps with msbuild (6 min)

After installing the package and associating your account with the Project Token, your applications will be protected during compilation. It's that simple ✨. Protection occurs only in release mode, allowing you to configure other options.


Configuration Object

You can initialize ByteHide Logs with

Log.Initialize(new LogSettings
{
    Persist = true,
    FilePath = "logs/app-logs.txt",
    RollingInterval = RollingInterval.Day,
    FileSizeLimitBytes = 10 * 1024 * 1024,
    ConsoleEnabled = true,
    MinimumLevel = LogLevel.Info,
    MaskSensitiveData = new[] { "password", "token" },
    DuplicateSuppressionWindow = TimeSpan.FromSeconds(5),
    MaxFileSize = 5 * 1024 * 1024
});

Choose from different presets, each offering specific protection configurations crafted by cybersecurity experts.

  • Persist: Guarantees that all logs are securely stored, providing an enduring record of application activity for complete traceability and compliance.

  • FilePath: Specifies the precise location for log storage, ensuring easy access and organized management of log files within your system.

  • RollingInterval: Automates log file rotation at set intervals—such as daily or hourly—to maintain optimal file sizes and streamline log analysis.

  • FileSizeLimitBytes: Enforces a maximum size for individual log files, automatically creating new files to prevent oversized logs and maintain performance.

  • ConsoleEnabled: Activates immediate logging to the console, offering real-time feedback during development and enhancing debugging efficiency.

  • MinimumLevel: Sets the threshold for log message severity, capturing only the most relevant information by filtering out less critical entries.

  • MaskSensitiveData: Protects confidential information by masking specified sensitive data within logs, upholding security standards and preventing data leaks.

  • DuplicateSuppressionWindow: Reduces log clutter by suppressing duplicate messages within a defined time window, highlighting unique events and simplifying log review.

  • MaxFileSize: Limits the overall storage consumed by log files, ensuring that logging remains resource-efficient and does not impede system performance.

Settings details

SettingTypeRequiredDescription
PersistboolfalseIndicates whether logs should be saved to a file. If false, they are only shown in the console.
FilepathstringfalsePath to the file where logs will be saved.
RollingIntervalRollingIntervalfalseDefines how often a new log file is created (daily, per minute, etc.).
FileSizeLimitBytesintegerfalseMaximum allowed file size before rolling (10 MB in this case).
ConsoleEnabledboolfalseEnables log output to the console in addition to the file.
MinimumLevelLogLevelfalseMinimum severity level for logs to be recorded (e.g., Info, Debug, Error).
MaskSensitiveDataobjectfalseList of keywords to mask sensitive data in the logs.
DuplicateSuppressionWindowTimeSpanfalseTime window to suppress duplicate log entries.
MaxFileSizeintegerfalseMaximum file size if splitting logs by size (5 MB in this case).
Previous
Authentication