├── .github ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── documentation.yml │ ├── feature-request.yml │ └── help.yml ├── PULL_REQUEST_TEMPLATE │ ├── bug-fix-pr.md │ ├── documentation-pr.md │ └── feature-pr.md ├── dependabot.yml ├── pull_request_template.md ├── release_drafter_template.yml └── workflows │ ├── DependencyInsights.yaml │ ├── docs.yml │ ├── python-package.yaml │ ├── python_publish.yaml │ ├── release_drafter.yml │ └── testing.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── assets └── logly-logo.png ├── docs ├── api-reference │ ├── callbacks.md │ ├── complete-reference.md │ ├── configuration.md │ ├── context.md │ ├── error-types.md │ ├── exceptions.md │ ├── file-operations.md │ ├── index.md │ ├── logging.md │ ├── search.md │ ├── sink-control.md │ ├── sink-management.md │ └── utilities.md ├── assets │ └── logly-logo.png ├── changelog.md ├── examples │ ├── async-logging.md │ ├── auto-sink-levels.md │ ├── basic-console.md │ ├── color-callback.md │ ├── colored-logging.md │ ├── context-binding.md │ ├── exception-handling.md │ ├── file-operations.md │ ├── file-rotation.md │ ├── index.md │ ├── json-logging.md │ ├── jupyter-colab.md │ ├── managing-sinks.md │ ├── multi-sink.md │ ├── per-level-controls.md │ └── template-strings.md ├── guides │ ├── configuration.md │ ├── development.md │ ├── error-handling.md │ ├── getting-started.md │ ├── log-compact.md │ ├── production-deployment.md │ ├── python-3.14-support.md │ ├── troubleshooting.md │ └── version-checking.md ├── index.md ├── installation.md ├── quickstart.md └── stylesheets │ └── extra.css ├── justfile ├── logly ├── __init__.py ├── _logly.pyi └── py.typed ├── mkdocs.yml ├── overrides └── partials │ └── actions.html ├── pyproject.toml ├── requirements.txt ├── src ├── backend │ ├── async.rs │ ├── colorization.rs │ ├── file.rs │ ├── filtering.rs │ ├── logging.rs │ ├── mod.rs │ ├── rotation.rs │ └── search.rs ├── config │ ├── mod.rs │ └── state.rs ├── format │ ├── json.rs │ ├── mod.rs │ └── template.rs ├── lib.rs ├── logger.rs ├── tests │ ├── jupyter_stdout_tests.rs │ ├── logger_tests.rs │ ├── mod.rs │ ├── retention_tests.rs │ ├── search.rs │ ├── sink_tests.rs │ └── txt_format_tests.rs └── utils │ ├── debug.rs │ ├── error.rs │ ├── levels.rs │ ├── mod.rs │ ├── performance.rs │ ├── validation.rs │ └── version_check.rs ├── tests ├── __init__.py ├── test_advanced_file_operations.py ├── test_async_newlines.py ├── test_auto_sink_levels.py ├── test_callbacks_and_templates.py ├── test_color_callbacks.py ├── test_comprehensive_coverage.py ├── test_error_messages.py ├── test_fail_level_and_colors.py ├── test_file_ops.py ├── test_global_console_control.py ├── test_jupyter_stdout.py ├── test_logger_features.py ├── test_logger_initialization.py ├── test_logly.py ├── test_performance_features.py ├── test_remove_all_functionality.py ├── test_retention.py ├── test_retention_comprehensive.py ├── test_search_functionality.py ├── test_sink_enable_disable.py ├── test_txt_format.py └── test_version_check.py └── uv.lock /.github/FUNDING.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/FUNDING.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/ISSUE_TEMPLATE/help.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug-fix-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/PULL_REQUEST_TEMPLATE/bug-fix-pr.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/documentation-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/PULL_REQUEST_TEMPLATE/documentation-pr.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/PULL_REQUEST_TEMPLATE/feature-pr.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release_drafter_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/release_drafter_template.yml -------------------------------------------------------------------------------- /.github/workflows/DependencyInsights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/DependencyInsights.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/python-package.yaml -------------------------------------------------------------------------------- /.github/workflows/python_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/python_publish.yaml -------------------------------------------------------------------------------- /.github/workflows/release_drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/release_drafter.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/logly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/assets/logly-logo.png -------------------------------------------------------------------------------- /docs/api-reference/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/callbacks.md -------------------------------------------------------------------------------- /docs/api-reference/complete-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/complete-reference.md -------------------------------------------------------------------------------- /docs/api-reference/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/configuration.md -------------------------------------------------------------------------------- /docs/api-reference/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/context.md -------------------------------------------------------------------------------- /docs/api-reference/error-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/error-types.md -------------------------------------------------------------------------------- /docs/api-reference/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/exceptions.md -------------------------------------------------------------------------------- /docs/api-reference/file-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/file-operations.md -------------------------------------------------------------------------------- /docs/api-reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/index.md -------------------------------------------------------------------------------- /docs/api-reference/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/logging.md -------------------------------------------------------------------------------- /docs/api-reference/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/search.md -------------------------------------------------------------------------------- /docs/api-reference/sink-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/sink-control.md -------------------------------------------------------------------------------- /docs/api-reference/sink-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/sink-management.md -------------------------------------------------------------------------------- /docs/api-reference/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/api-reference/utilities.md -------------------------------------------------------------------------------- /docs/assets/logly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/assets/logly-logo.png -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/examples/async-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/async-logging.md -------------------------------------------------------------------------------- /docs/examples/auto-sink-levels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/auto-sink-levels.md -------------------------------------------------------------------------------- /docs/examples/basic-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/basic-console.md -------------------------------------------------------------------------------- /docs/examples/color-callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/color-callback.md -------------------------------------------------------------------------------- /docs/examples/colored-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/colored-logging.md -------------------------------------------------------------------------------- /docs/examples/context-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/context-binding.md -------------------------------------------------------------------------------- /docs/examples/exception-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/exception-handling.md -------------------------------------------------------------------------------- /docs/examples/file-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/file-operations.md -------------------------------------------------------------------------------- /docs/examples/file-rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/file-rotation.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/examples/json-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/json-logging.md -------------------------------------------------------------------------------- /docs/examples/jupyter-colab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/jupyter-colab.md -------------------------------------------------------------------------------- /docs/examples/managing-sinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/managing-sinks.md -------------------------------------------------------------------------------- /docs/examples/multi-sink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/multi-sink.md -------------------------------------------------------------------------------- /docs/examples/per-level-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/per-level-controls.md -------------------------------------------------------------------------------- /docs/examples/template-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/examples/template-strings.md -------------------------------------------------------------------------------- /docs/guides/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/configuration.md -------------------------------------------------------------------------------- /docs/guides/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/development.md -------------------------------------------------------------------------------- /docs/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/error-handling.md -------------------------------------------------------------------------------- /docs/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/getting-started.md -------------------------------------------------------------------------------- /docs/guides/log-compact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/log-compact.md -------------------------------------------------------------------------------- /docs/guides/production-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/production-deployment.md -------------------------------------------------------------------------------- /docs/guides/python-3.14-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/python-3.14-support.md -------------------------------------------------------------------------------- /docs/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/guides/version-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/guides/version-checking.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/justfile -------------------------------------------------------------------------------- /logly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/logly/__init__.py -------------------------------------------------------------------------------- /logly/_logly.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/logly/_logly.pyi -------------------------------------------------------------------------------- /logly/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/overrides/partials/actions.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/backend/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/async.rs -------------------------------------------------------------------------------- /src/backend/colorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/colorization.rs -------------------------------------------------------------------------------- /src/backend/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/file.rs -------------------------------------------------------------------------------- /src/backend/filtering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/filtering.rs -------------------------------------------------------------------------------- /src/backend/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/logging.rs -------------------------------------------------------------------------------- /src/backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/mod.rs -------------------------------------------------------------------------------- /src/backend/rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/rotation.rs -------------------------------------------------------------------------------- /src/backend/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/backend/search.rs -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod state; 2 | -------------------------------------------------------------------------------- /src/config/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/config/state.rs -------------------------------------------------------------------------------- /src/format/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/format/json.rs -------------------------------------------------------------------------------- /src/format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/format/mod.rs -------------------------------------------------------------------------------- /src/format/template.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/format/template.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/tests/jupyter_stdout_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/jupyter_stdout_tests.rs -------------------------------------------------------------------------------- /src/tests/logger_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/logger_tests.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/mod.rs -------------------------------------------------------------------------------- /src/tests/retention_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/retention_tests.rs -------------------------------------------------------------------------------- /src/tests/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/search.rs -------------------------------------------------------------------------------- /src/tests/sink_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/sink_tests.rs -------------------------------------------------------------------------------- /src/tests/txt_format_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/tests/txt_format_tests.rs -------------------------------------------------------------------------------- /src/utils/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/debug.rs -------------------------------------------------------------------------------- /src/utils/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/error.rs -------------------------------------------------------------------------------- /src/utils/levels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/levels.rs -------------------------------------------------------------------------------- /src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/mod.rs -------------------------------------------------------------------------------- /src/utils/performance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/performance.rs -------------------------------------------------------------------------------- /src/utils/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/validation.rs -------------------------------------------------------------------------------- /src/utils/version_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/src/utils/version_check.rs -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_advanced_file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_advanced_file_operations.py -------------------------------------------------------------------------------- /tests/test_async_newlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_async_newlines.py -------------------------------------------------------------------------------- /tests/test_auto_sink_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_auto_sink_levels.py -------------------------------------------------------------------------------- /tests/test_callbacks_and_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_callbacks_and_templates.py -------------------------------------------------------------------------------- /tests/test_color_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_color_callbacks.py -------------------------------------------------------------------------------- /tests/test_comprehensive_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_comprehensive_coverage.py -------------------------------------------------------------------------------- /tests/test_error_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_error_messages.py -------------------------------------------------------------------------------- /tests/test_fail_level_and_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_fail_level_and_colors.py -------------------------------------------------------------------------------- /tests/test_file_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_file_ops.py -------------------------------------------------------------------------------- /tests/test_global_console_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_global_console_control.py -------------------------------------------------------------------------------- /tests/test_jupyter_stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_jupyter_stdout.py -------------------------------------------------------------------------------- /tests/test_logger_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_logger_features.py -------------------------------------------------------------------------------- /tests/test_logger_initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_logger_initialization.py -------------------------------------------------------------------------------- /tests/test_logly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_logly.py -------------------------------------------------------------------------------- /tests/test_performance_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_performance_features.py -------------------------------------------------------------------------------- /tests/test_remove_all_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_remove_all_functionality.py -------------------------------------------------------------------------------- /tests/test_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_retention.py -------------------------------------------------------------------------------- /tests/test_retention_comprehensive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_retention_comprehensive.py -------------------------------------------------------------------------------- /tests/test_search_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_search_functionality.py -------------------------------------------------------------------------------- /tests/test_sink_enable_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_sink_enable_disable.py -------------------------------------------------------------------------------- /tests/test_txt_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_txt_format.py -------------------------------------------------------------------------------- /tests/test_version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/tests/test_version_check.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammad-fiaz/logly/HEAD/uv.lock --------------------------------------------------------------------------------