Changed logging to debug

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-07-05 17:58:45 -07:00
parent bfc8c18675
commit ee4f355e49
3 changed files with 5 additions and 5 deletions

View file

@ -116,7 +116,7 @@ class LoginController extends Controller
Auth::login($user); Auth::login($user);
} else { } else {
$username = $saml->getUsername(); $username = $saml->getUsername();
\Log::warning("SAML user '$username' could not be found in database."); \Log::debug("SAML user '$username' could not be found in database.");
$request->session()->flash('error', trans('auth/message.signin.error')); $request->session()->flash('error', trans('auth/message.signin.error'));
$saml->clearData(); $saml->clearData();
} }
@ -127,7 +127,7 @@ class LoginController extends Controller
} }
} catch (\Exception $e) { } catch (\Exception $e) {
\Log::warning('There was an error authenticating the SAML user: '.$e->getMessage()); \Log::debug('There was an error authenticating the SAML user: '.$e->getMessage());
throw new \Exception($e->getMessage()); throw new \Exception($e->getMessage());
} }
@ -138,7 +138,7 @@ class LoginController extends Controller
if (!$saml->isEnabled()) { if (!$saml->isEnabled()) {
\Log::debug("SAML page requested, but SAML does not seem to enabled."); \Log::debug("SAML page requested, but SAML does not seem to enabled.");
} else { } else {
\Log::warning("SAML page requested, but samlData seems empty."); \Log::debug("SAML page requested, but samlData seems empty.");
} }
} }

View file

@ -54,7 +54,7 @@ class LogListener
public function onCheckoutAccepted(CheckoutAccepted $event) public function onCheckoutAccepted(CheckoutAccepted $event)
{ {
\Log::error('event passed to the onCheckoutAccepted listener:'); \Log::debug('event passed to the onCheckoutAccepted listener:');
$logaction = new Actionlog(); $logaction = new Actionlog();
$logaction->item()->associate($event->acceptance->checkoutable); $logaction->item()->associate($event->acceptance->checkoutable);
$logaction->target()->associate($event->acceptance->assignedTo); $logaction->target()->associate($event->acceptance->assignedTo);

View file

@ -40,7 +40,7 @@ class AppServiceProvider extends ServiceProvider
if (strpos(env('APP_URL'), 'https') === 0) { if (strpos(env('APP_URL'), 'https') === 0) {
$url->forceScheme('https'); $url->forceScheme('https');
} else { } else {
\Log::warning("'APP_FORCE_TLS' is set to true, but 'APP_URL' does not start with 'https://'. Will not force TLS on connections."); \Log::debug("'APP_FORCE_TLS' is set to true, but 'APP_URL' does not start with 'https://'. Will not force TLS on connections.");
} }
} }