From f54e50eb11ead7b99585e65042a48d0fd07ccf50 Mon Sep 17 00:00:00 2001 From: Harshad Sharma Date: Thu, 16 May 2024 01:49:55 +0530 Subject: [PATCH] Remove logging from colorhash --- lib/liliform/colorhash.ex | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/liliform/colorhash.ex b/lib/liliform/colorhash.ex index 19ef2e7..f658c1c 100644 --- a/lib/liliform/colorhash.ex +++ b/lib/liliform/colorhash.ex @@ -21,7 +21,6 @@ defmodule Liliform.Colorhash do """ def hsl(input, raw: true) do if Features.enabled?(:colorhash) do - Logger.debug("Colorhash enabled") input = String.downcase(input) <> @seed hash = :erlang.phash2(input, 2_147_483_647) @@ -31,7 +30,6 @@ defmodule Liliform.Colorhash do {hue, saturation, lightness} else - Logger.debug("Colorhash disabled") @default_color end end