mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Changed logging to debug
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
bfc8c18675
commit
ee4f355e49
|
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue