Zum Hauptinhalt springen Zur Suche springen Zur Hauptnavigation springen
EPS
Willkommen!

Willkommen im B2B-Portal von EPS – Ihre Plattform für effizientes Bestellen, Zusammenarbeit und erfolgreiche Geschäftsprozesse.

EPS

Produktinformationen "ERSATZKARTUSCHE-FURIE-F-750"

Erstzkartusche für FURIE CS-Cartridge 750, mindestens 24 Monate haltbar

Ersatzkartusche für das Furie Defence Reizstoffsprühsystem.
Die Reizstoffkartusche und der Wirkstoff CS Reizgas ist zugelassen vom Bundeskriminalamt BKA "BKA 17r"

  • Wirkstoff: Tränengas (CS)
  • Treibmittel: Unbrennbare Sprühlösung
  • Füllmenge: 750 ml
  • Insgesamt 18 Sekunden Sprühdauer
  • Mindesthaltbarkeit: 24 Monate

0 von 0 Bewertungen

Durchschnittliche Bewertung von 0 von 5 Sternen

Bewerten Sie dieses Produkt!

Teilen Sie Ihre Erfahrungen mit anderen Kunden.


Downloads zu dem Produkt ERSATZKARTUSCHE-FURIE-F-750

Bilder zu dem Produkt ERSATZKARTUSCHE-FURIE-F-750

Flasche
REIZGASMODUL-SET FURIE X-750
1 Artikel auf Lager
Das Furie Reizgasmodul für eine hocheffiziente Art der Personenvertreibung. Ideal für leerstehende Urlaubsresidenzen, Wohnmobile, Yachten und abgelegene Lagerräume.
EPS support icon
Loading…
Loading the web debug toolbar…
Attempt #
Writing to the log file failed: Write of 501 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Uncaught PHP Exception ErrorException: "Notice: file_put_contents(): Write of 125289 bytes failed with errno=28 No space left on device" at FileProfilerStorage.php line 170 Context: {"exception":{}} (500 Internal Server Error)

Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Writing to the log file failed: Write of 501 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Uncaught PHP Exception ErrorException: "Notice: file_put_contents(): Write of 125289 bytes failed with errno=28 No space left on device" at FileProfilerStorage.php line 170
Context: {"exception":{}}

Exception

UnexpectedValueException

  1.                 $this->write($record);
  2.                 return;
  3.             }
  4.             throw new \UnexpectedValueException('Writing to the log file failed: '.$error Utils::getRecordMessageForException($record));
  5.         }
  6.         $this->retrying false;
  7.         if ($this->useLocking) {
  8.             flock($streamLOCK_UN);
  1.             $error $this->errorMessage;
  2.             // close the resource if possible to reopen it, and retry the failed write
  3.             if (!$this->retrying && $this->url !== null && $this->url !== 'php://memory') {
  4.                 $this->retrying true;
  5.                 $this->close();
  6.                 $this->write($record);
  7.                 return;
  8.             }
  9.             throw new \UnexpectedValueException('Writing to the log file failed: '.$error Utils::getRecordMessageForException($record));
  1.             $record $this->processRecord($record);
  2.         }
  3.         $record->formatted $this->getFormatter()->format($record);
  4.         $this->write($record);
  5.         return false === $this->bubble;
  6.     }
  7.     /**
  1.             && \in_array($record->context['exception']::class, $this->excludeExceptionListtrue)
  2.         ) {
  3.             return true;
  4.         }
  5.         return $this->handler->handle($record);
  6.     }
  7. }
  1.                 $record->extra,
  2.                 $record->formatted
  3.             );
  4.         }
  5.         return $this->handler->handle($record);
  6.     }
  7. }
  1.      * {@inheritdoc}
  2.      */
  3.     public function handle(LogRecord $record): bool
  4.     {
  5.         if ($record->channel !== 'business_events') {
  6.             return $this->handler->handle($record);
  7.         }
  8.         // exclude if the flow event is in excluded list
  9.         if (\in_array($record->message$this->excludeEventstrue)) {
  10.             return true;
  1.                 }
  2.                 // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3.                 try {
  4.                     $handled true;
  5.                     if (true === $handler->handle(clone $record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.             }
  2.             $level = static::toMonologLevel($level);
  3.         }
  4.         $this->addRecord($level, (string) $message$context);
  5.     }
  6.     /**
  7.      * Adds a log record at the DEBUG level.
  8.      *
  1.             return;
  2.         }
  3.         $logLevel ??= $this->resolveLogLevel($exception);
  4.         $this->logger->log($logLevel$message, ['exception' => $exception]);
  5.     }
  6.     /**
  7.      * Resolves the level to be used when logging the exception.
  8.      */
  1.             $event->setThrowable($throwable);
  2.         }
  3.         $e FlattenException::createFromThrowable($throwable);
  4.         $this->logException($throwable\sprintf('Uncaught PHP Exception %s: "%s" at %s line %s'$e->getClass(), $e->getMessage(), basename($e->getFile()), $e->getLine()), $logLevel);
  5.     }
  6.     public function onKernelException(ExceptionEvent $event): void
  7.     {
  8.         if (null === $this->controller) {
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.      *
  2.      * @return TEvent
  3.      */
  4.     public function dispatch(object $event, ?string $eventName null): object
  5.     {
  6.         $event $this->dispatcher->dispatch($event$eventName);
  7.         if (!$event instanceof FlowEventAware) {
  8.             return $event;
  9.         }
  1.     ) {
  2.     }
  3.     public function dispatch(object $event, ?string $eventName null): object
  4.     {
  5.         $event $this->dispatcher->dispatch($event$eventName);
  6.         if (!HookableEventFactory::isHookable($event)) {
  7.             return $event;
  8.         }
  1.                 }
  2.                 $this->dispatch($nested$name);
  3.             }
  4.         }
  5.         return $this->dispatcher->dispatch($event$eventName);
  6.     }
  7.     /**
  8.      * @param callable $listener can not use native type declaration @see https://github.com/symfony/symfony/issues/42283
  9.      */
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * Handles a throwable by trying to convert it to a Response.
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$eisKernelTerminating$this->terminating);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.         if ($pop $request !== $this->requestStack->getMainRequest()) {
  2.             $this->requestStack->push($request);
  3.         }
  4.         try {
  5.             $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         } finally {
  7.             if ($pop) {
  8.                 $this->requestStack->pop();
  9.             }
  10.         }
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
ErrorHandler->handleException()

Stack Trace

UnexpectedValueException
UnexpectedValueException:
Writing to the log file failed: Write of 501 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Uncaught PHP Exception ErrorException: "Notice: file_put_contents(): Write of 125289 bytes failed with errno=28 No space left on device" at FileProfilerStorage.php line 170
Context: {"exception":{}}

  at /var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:186
  at Monolog\Handler\StreamHandler->write()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:181)
  at Monolog\Handler\StreamHandler->write()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:44)
  at Monolog\Handler\AbstractProcessingHandler->handle()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Framework/Log/Monolog/ExcludeExceptionHandler.php:38)
  at Shopware\Core\Framework\Log\Monolog\ExcludeExceptionHandler->handle()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Framework/Log/Monolog/ErrorCodeLogLevelHandler.php:62)
  at Shopware\Core\Framework\Log\Monolog\ErrorCodeLogLevelHandler->handle()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Framework/Log/Monolog/ExcludeFlowEventHandler.php:31)
  at Shopware\Core\Framework\Log\Monolog\ExcludeFlowEventHandler->handle()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/monolog/monolog/src/Monolog/Logger.php:391)
  at Monolog\Logger->addRecord()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/monolog/monolog/src/Monolog/Logger.php:581)
  at Monolog\Logger->log()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/http-kernel/EventListener/ErrorListener.php:171)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logException()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/http-kernel/EventListener/ErrorListener.php:72)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logKernelException()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Content/Flow/Dispatching/FlowDispatcher.php:41)
  at Shopware\Core\Content\Flow\Dispatching\FlowDispatcher->dispatch()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Framework/Webhook/WebhookDispatcher.php:28)
  at Shopware\Core\Framework\Webhook\WebhookDispatcher->dispatch()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/shopware/core/Framework/Event/NestedEventDispatcher.php:31)
  at Shopware\Core\Framework\Event\NestedEventDispatcher->dispatch()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/http-kernel/HttpKernel.php:241)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/http-kernel/HttpKernel.php:134)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/var/www/vhosts/eps-dev.com/shopware6.eps-dev.com/public/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()