From a15639a58cc4f1083d44a5a5a81d5be23417ad99 Mon Sep 17 00:00:00 2001 From: Kevin Schweikert <54439512+kevinschweikert@users.noreply.github.com> Date: Fri, 13 Sep 2024 16:21:33 +0200 Subject: [PATCH] Fix docs for `Pruner` default max_age value (#96) --- lib/error_tracker/plugins/pruner.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/error_tracker/plugins/pruner.ex b/lib/error_tracker/plugins/pruner.ex index d8b2fe7..5c2a0d6 100644 --- a/lib/error_tracker/plugins/pruner.ex +++ b/lib/error_tracker/plugins/pruner.ex @@ -8,7 +8,7 @@ defmodule ErrorTracker.Plugins.Pruner do ## Using the pruner To enable the pruner you must register the plugin in the ErrorTracker configuration. This will use - the default options, which is to prune errors resolved after 5 minutes. + the default options, which is to prune errors resolved after 24 hours. config :error_tracker, plugins: [ErrorTracker.Plugins.Pruner]