diff --git a/app/Support/Navigation.php b/app/Support/Navigation.php index 6f3b2ae8c9..a0e3b458b6 100644 --- a/app/Support/Navigation.php +++ b/app/Support/Navigation.php @@ -507,12 +507,12 @@ class Navigation $diff = $start->diffInMonths($end, true); Log::debug(sprintf('preferredCarbonFormat(%s, %s) = %f', $start->format('Y-m-d'), $end->format('Y-m-d'), $diff)); if ($diff >= 1.001) { - Log::debug(sprintf('Return Y-m because %s', $diff)); +// Log::debug(sprintf('Return Y-m because %s', $diff)); $format = 'Y-m'; } if ($diff >= 12.001) { - Log::debug(sprintf('Return Y because %s', $diff)); +// Log::debug(sprintf('Return Y because %s', $diff)); $format = 'Y'; }