Loading…
Loading the web debug toolbar…
Attempt #
unlink(): Argument #1 ($filename) must not contain any null bytes (500 Internal Server Error)

Symfony Exception

ValueError

HTTP 500 Internal Server Error

unlink(): Argument #1 ($filename) must not contain any null bytes

Exception

ValueError

  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.             if ($csvTime >= $minimalProfileTimestamp) {
  2.                 break;
  3.             }
  4.             @unlink($this->getFilename($csvToken));
  5.             $offset += \strlen($line);
  6.         }
  7.         fclose($handle);
  8.         file_put_contents($file.'.offset'$offset);
  1.                 $profile->getVirtualType() ?? 'request',
  2.             ]);
  3.             fclose($file);
  4.             if (=== mt_rand(110)) {
  5.                 $this->removeExpiredProfiles();
  6.             }
  7.         }
  8.         return true;
  9.     }
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  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.         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.         }
  2.     }
  3.     public function terminate(Request $requestResponse $response): void
  4.     {
  5.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  6.     }
  7.     /**
  8.      * @internal
  9.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 148)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     public function shutdown(): void
  9.     {
  1.         } else {
  2.             $response->send();
  3.         }
  4.         if ($this->kernel instanceof TerminableInterface) {
  5.             $this->kernel->terminate($this->request$response);
  6.         }
  7.         return 0;
  8.     }
  9. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/gcsale/WhatsApp/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 2

Level Message
info 10:38:56 Matched route "app_index".
{
    "route": "app_index",
    "route_parameters": {
        "_route": "app_index",
        "_controller": "App\\Controller\\IndexController::index"
    },
    "request_uri": "https://whatsapp.gc.sale/",
    "method": "GET"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 10:38:56 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 10:38:56 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 10:38:56 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
debug 10:38:56 Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
debug 10:38:56 Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
debug 10:38:56 Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
debug 10:38:56 Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
critical 10:38:56 Uncaught PHP Exception ValueError: "unlink(): Argument #1 ($filename) must not contain any null bytes" at FileProfilerStorage.php line 341
{
    "exception": {}
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/41/00/020041): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/58/5e/325e58): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e0/b2/adb2e0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9e/d7/a2d79e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/01/db/42db01): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/69/d1/55d169): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b4/4b/7f4bb4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/88/d8/4bd888): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/36/f1/26f136): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ce/1b/851bce): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/49/62/176249): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fd/8c/838cfd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8e/18/9e188e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/be/a0/cba0be): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f3/82/e182f3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/85/26/9d2685): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/dd/45/8b45dd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/54/fd/9ffd54): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/07/3d/7c3d07): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f4/9b/849bf4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/89/fd/1cfd89): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8d/3d/8f3d8d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ae/45/4145ae): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9b/d9/18d99b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/42/bb/edbb42): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/5d/db5d5a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d0/23/8823d0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/88/de/15de88): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f4/70/4670f4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6d/fa/a4fa6d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4c/96/a4964c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ab/d1/19d1ab): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/14/4a/ee4a14): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/55/22/a42255): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/82/b9/47b982): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/80/6a/e46a80): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ee/34/5734ee): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5c/3d/e53d5c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/88/d2/0ad288): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/30/99/799930): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f6/18/0318f6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0c/dc/39dc0c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4c/2d/bf2d4c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f3/a0/3ba0f3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/eb/49/7849eb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a2/e6/39e6a2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ee/f3/46f3ee): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c6/44/6944c6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/76/d9/68d976): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ba/d8/7cd8ba): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/db/51/3451db): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b2/e5/f5e5b2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5d/46/1a465d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/60/ef/08ef60): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/22/89/9f8922): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4d/7b/067b4d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d8/85/5085d8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b9/1c/7d1cb9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f0/c2/c5c2f0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/07/41/904107): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ae/1e/c91eae): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/04/ef/b6ef04): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/83/ca/1fca83): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b4/25/ff25b4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2c/c2/03c22c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4b/d3/58d34b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/29/9d/c79d29): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c0/f1/e9f1c0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/61/34/863461): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5b/4b/194b5b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f6/ac/a1acf6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8d/9e/fe9e8d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/d5/02d55a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/12/63/616312): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/39/3e/203e39): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b4/20/4e20b4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/58/05/e00558): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/53/f4/95f453): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/f6/77f65a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/27/53/425327): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/49/39/583949): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/bb/1c/5f1cbb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fa/5a/685afa): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4c/c8/95c84c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4f/a9/2ca94f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8a/4c/374c8a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c0/ae/8aaec0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/76/48/974876): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fd/38/f538fd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cc/bf/12bfcc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/81/2f/142f81): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7b/43/5b437b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b1/cb/c6cbb1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/59/c1/3ac159): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ae/a2/0fa2ae): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cc/c7/1fc7cc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f5/e3/5ee3f5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/47/d1/10d147): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/df/c9/04c9df): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c3/96/f996c3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/60/4b/8b4b60): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a1/af/21afa1): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e7/4a/d34ae7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4e/fa/16fa4e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e6/25/0a25e6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2e/1f/371f2e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b6/ef/49efb6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4b/53/14534b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f8/18/2e18f8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/96/b8/2ab896): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a8/b9/b5b9a8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/69/78/c37869): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3a/77/6b773a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/06/3f/f13f06): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3d/98/60983d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/eb/8f/0c8feb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/af/b6/3ab6af): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7b/c4/c7c47b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ea/38/1038ea): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fa/ae/90aefa): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/84/59/045984): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/72/e8/20e872): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/75/2c/882c75): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fe/5b/cc5bfe): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/98/4f/984f98): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9c/68/03689c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a2/5b/865ba2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3a/bc/88bc3a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ba/41/a641ba): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d1/a4/b5a4d1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/23/fe/99fe23): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/da/6eda5a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cb/cf/80cfcb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f1/0b/7c0bf1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f6/7d/0f7df6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/50/d7/23d750): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/27/0c/000c27): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ed/cf/10cfed): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/85/1e/c21e85): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/40/8f/0e8f40): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b5/3b/f63bb5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0c/30/68300c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5d/63/5f635d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b1/47/0847b1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e2/10/6610e2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/02/7c/f07c02): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/56/69/576956): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/aa/98/f598aa): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a9/18/2f18a9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3f/94/84943f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1e/f6/81f61e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6b/3a/d13a6b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7b/ed/5bed7b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b5/44/ca44b5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/60/63/c56360): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/12/67/746712): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c3/ce/7bcec3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2d/96/bd962d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cc/27/9427cc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/dd/e3/58e3dd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/59/7c/ab7c59): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3a/7a/187a3a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3a/0d/590d3a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1e/ef/daef1e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3b/05/2d053b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/eb/2a/6a2aeb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b4/00/6700b4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/30/e4/08e430): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fa/93/1993fa): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/52/18/011852): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d7/e4/7be4d7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/99/77/4f7799): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f6/f0/7df0f6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/69/ff/adff69): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d6/ff/3affd6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ed/b3/a4b3ed): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d8/5d/555dd8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e4/d7/85d7e4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b9/c1/48c1b9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/73/6b/b66b73): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4f/24/f5244f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2b/3d/293d2b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1e/58/82581e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fe/d9/bbd9fe): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3e/ec/13ec3e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/69/1c/501c69): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/dd/31/9031dd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0e/68/84680e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/71/5b/9a5b71): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8e/79/0e798e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/53/ca/0dca53): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/20/05/440520): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/71/fb/12fb71): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/38/1e/2c1e38): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/58/c0/c8c058): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/56/28/e42856): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ec/28/5928ec): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f0/30/0930f0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e5/bb/47bbe5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1c/c6/f5c61c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/58/e8/70e858): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/75/95755a): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/67/54/355467): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/48/a4/cfa448): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/94/07949d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/e8/3ae89d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/95/01/760195): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/33/b8/6bb833): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fd/40/0a40fd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/50/4f/db4f50): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6e/89/1c896e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e3/3c/c83ce3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6a/a4/2ea46a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ce/9c/a09cce): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b8/d4/40d4b8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/87/fd/b1fd87): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2e/1e/5c1e2e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/85/71/ee7185): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c8/3c/7d3cc8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7d/41/28417d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fc/41/8041fc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3d/9e/009e3d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/84/00/160084): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3b/4e/884e3b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/39/24/e12439): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5c/b6/f5b65c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8a/22/02228a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/50/b1/31b150): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0c/5b/c95b0c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/72/70/877072): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8e/7c/e27c8e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f3/4d/cf4df3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7c/50/60507c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b6/0a/ba0ab6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3b/34/cb343b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cb/17/9717cb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7a/5d/485d7a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a7/aa/14aaa7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e2/91/2091e2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/de/71/1e71de): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/db/17/3f17db): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/63/d1/aad163): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/86/71/987186): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/58/c9/e5c958): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/71/37/1d3771): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fc/d2/a9d2fc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f3/0d/dd0df3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/38/d0/ffd038): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/80/2d/b92d80): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b3/14/e214b3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/05/18/cc1805): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b5/43/7b43b5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a2/16/e616a2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b5/bb/26bbb5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4f/bb/bebb4f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/49/05/940549): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/62/60/086062): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d3/84/0784d3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/75/5f/405f75): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f7/8c/6e8cf7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/41/a3/01a341): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/76/cf/eecf76): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d0/9f/2e9fd0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0a/dd/c0dd0a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/93/ce/44ce93): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e8/8a/238ae8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c7/91/3891c7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/76/e0/a5e076): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/37/24/a42437): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2b/4f/054f2b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3c/ec/f3ec3c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1d/af/7eaf1d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/76/6b/9a6b76): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c6/ed/49edc6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/84/fd/93fd84): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/37/c9/1fc937): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a2/c6/04c6a2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/77/32/1c3277): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/75/23759d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/96/66/ea6696): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9f/79/0b799f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2f/1e/ed1e2f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f4/c2/e2c2f4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/38/d7/d6d738): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/38/3a/533a38): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4b/b1/9fb14b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/20/3b/f23b20): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/27/4f/dd4f27): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/83/4e/a64e83): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d9/03/1603d9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/66/dd/1ddd66): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/00/8a/e38a00): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7c/32/07327c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a7/86/8a86a7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7b/f9/adf97b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d2/b8/90b8d2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/13/64/4f6413): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8a/00/71008a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/01/2d/802d01): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/93/3c/313c93): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/eb/19/4e19eb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d7/0e/350ed7): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/40/28/cd2840): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/17/80/228017): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/80/06/cd0680): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8b/f6/58f68b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2d/a2/25a22d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/19/7a/177a19): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ae/c1/1ec1ae): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d2/18/8318d2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ec/4d/cb4dec): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e3/eb/a0ebe3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/46/5e/365e46): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4a/d2/51d24a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ba/33/dc33ba): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c6/a9/68a9c6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/64/55/335564): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1d/e6/1be61d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/06/62/806206): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/79/cf/72cf79): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/17/c7/aac717): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/07/4e/574e07): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/db/19/3e19db): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e3/99/2a99e3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b8/02/7002b8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/74/4e/494e74): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ca/fe/29feca): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/89/ec/c8ec89): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a1/d4/97d4a1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/bc/bc/e3bcbc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e4/e0/ebe0e4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cf/a4/f0a4cf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/49/85/d58549): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f6/bd/e5bdf6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fe/05/1605fe): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c8/5c/495cc8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/52/3c/823c52): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4b/65/39654b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/15/bd/38bd15): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7c/42/ff427c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/25/5b/615b25): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1e/c3/29c31e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/2a/9e/5c9e2a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ed/d0/2dd0ed): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/eb/00/d500eb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e3/00/ff00e3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6c/73/71736c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/35/4e/4e4e35): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8d/d6/08d68d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f2/a0/57a0f2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4a/54/07544a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/05/e5/92e505): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6a/8f/d38f6a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/95/52/e95295): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ad/1b/841bad): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/99/c5/11c599): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0b/ea/63ea0b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4f/f0/d1f04f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0a/f7/c1f70a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/34/0b/990b34): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b3/fe/05feb3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ea/1b/631bea): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b2/7c/147cb2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f5/9c/e99cf5): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/35/b1/ffb135): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/11/a2/22a211): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/54/15/411554): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/65/dc/a8dc65): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5a/92/73925a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/64/8d/a98d64): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e0/39/7439e0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/13/f1/b6f113): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/10/3a/333a10): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/81/56/965681): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cf/2c/002ccf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/71/3e/9a3e71): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/94/5e/7d5e94): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a0/c1/79c1a0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/db/67/6d67db): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9c/53/f0539c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/dd/2f/e12fdd): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0b/0f/d30f0b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/68/07/3f0768): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5e/10/7e105e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c0/ff/10ffc0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1a/00/aa001a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a3/31/4931a3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a4/69/2f69a4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f9/d7/6dd7f9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/bb/50/5d50bb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f3/9c/e59cf3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/71/3a/cd3a71): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/df/3d/a73ddf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e2/d2/f1d2e2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c8/f1/8cf1c8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fb/8f/9d8ffb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a7/eb/56eba7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/66/84/328466): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/a4/9aa49d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8b/94/39948b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/21/00/440021): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/64/c5/2fc564): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/88/1f/881f88): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d2/fd/e9fdd2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cb/2a/cb2acb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1b/ea/3aea1b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d3/f1/4af1d3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b8/ce/c6ceb8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/72/af/3faf72): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/10/aa/52aa10): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8f/df/e2df8f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/0d/a8/d8a80d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/20/23/d02320): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/da/4f/684fda): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/77/64/2d6477): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5b/9a/ce9a5b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1c/e0/65e01c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/01/db/34db01): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1a/2d/bd2d1a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/91/a3/efa391): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e4/1d/af1de4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ed/30/5430ed): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ca/6f/996fca): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/28/e8/c3e828): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/bf/a9/bfa9bf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/80/b8/bcb880): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e9/55/d355e9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cf/5c/2d5ccf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/14/40/b94014): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/91/88/368891): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/40/ee/69ee40): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/98/f0/9ef098): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/3d/37/3d373d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/46/7a/db7a46): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c2/a6/7aa6c2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ea/b7/2eb7ea): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ff/f2/53f2ff): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/fe/6d/686dfe): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1d/22/11221d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a6/b1/c6b1a6): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f7/35/2f35f7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c4/f3/7cf3c4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d7/a2/62a2d7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ec/bb/71bbec): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/7b/f6/86f67b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b2/f9/71f9b2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/66/1b/831b66): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ba/1f/8e1fba): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/11/4e/bc4e11): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c7/1b/551bc7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b8/00/5100b8): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/50/ef/cdef50): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8f/62/9a628f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/6b/c5/8cc56b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b3/2c/c82cb3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/4a/57/05574a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/41/41/264141): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1d/f1/1ef11d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/86/81/268186): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c4/d9/2fd9c4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8f/6b/816b8f): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/60/42/894260): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5b/7e/9d7e5b): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/44/b4/0cb444): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5e/c9/9ec95e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/43/9f/fc9f43): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/bb/69/2569bb): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d7/a3/1ba3d7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/f2/e9/f7e9f2): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d0/5f/fa5fd0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e9/35/5e35e9): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9a/1d/741d9a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/67/e8/0de867): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/57/b3/fab357): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/39/77/4a7739): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/af/fb/0afbaf): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/84/78/bb7884): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/35/89/bb8935): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/8e/af/01af8e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/82/dc/c6dc82): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/81/1d/7b1d81): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/29/f6/7bf629): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/45/43/a94345): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1a/e4/d0e41a): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a4/c4/42c4a4): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/27/88/f68827): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/77/48/424877): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/e0/b3/02b3e0): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/33/77/ba7733): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/80/8b/ad8b80): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/a3/9b/da9ba3): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/ec/b1/a9b1ec): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/5c/06/fa065c): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/d7/51/6151d7): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/99/68/a96899): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c1/e5/45e5c1): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/da/95/e195da): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/cc/d4/13d4cc): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/40/55409d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/9d/98/11989d): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/68/53/515368): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/b9/b7/d5b7b9): No such file or directory
{
    "exception": {
        "severity": 2,
        "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
        "line": 341,
        "trace": [
            {
                "file": "/var/www/gcsale/WhatsApp/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php",
                "line": 193,
                "function": "removeExpiredProfiles",
                "class": "Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/1e/b7/e4b71e): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/52/34/3a3452): No such file or directory
debug 10:38:56 Warning: unlink(/var/www/gcsale/WhatsApp/var/cache/dev/profiler/c4/f1/0ef1c4): No such file or directory
debug 10:38:56 Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
critical 10:38:56 Uncaught Error: unlink(): Argument #1 ($filename) must not contain any null bytes
{
    "exception": {}
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
debug 10:38:56 Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
debug 10:38:56 Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
debug 10:38:56 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
debug 10:38:56 Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

ValueError
ValueError:
unlink(): Argument #1 ($filename) must not contain any null bytes

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:341
  at unlink()
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:341)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->removeExpiredProfiles()
     (vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:193)
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write()
     (vendor/symfony/http-kernel/Profiler/Profiler.php:100)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:127)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:112)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (vendor/symfony/http-kernel/Kernel.php:148)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:53)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/gcsale/WhatsApp/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #