Trường Đại Học FPT - Hỗ Trợ Thí Sinh Nhận Tư Vấn Trực Tiếp Từ Nhà ...
Có thể bạn quan tâm
window.data = {"report":{"notifier":"Laravel Client","language":"PHP","framework_version":"11.4.0","language_version":"8.3.15","exception_class":"ErrorException","seen_at":1766232478,"message":"fwrite(): Write of 3193 bytes failed with errno=28 No space left on device","glows":[],"solutions":[],"documentation_links":[],"stacktrace":[{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/StreamHandler.php","line_number":162,"method":"streamWrite","class":"Monolog\\Handler\\StreamHandler","code_snippet":{"147":" }","148":"","149":" $this-\u003EstreamWrite($stream, $record);","150":"","151":" if ($this-\u003EuseLocking) {","152":" flock($stream, LOCK_UN);","153":" }","154":" }","155":"","156":" \/**","157":" * Write to stream","158":" * @param resource $stream","159":" *\/","160":" protected function streamWrite($stream, LogRecord $record): void","161":" {","162":" fwrite($stream, (string) $record-\u003Eformatted);","163":" }","164":"","165":" private function customErrorHandler(int $code, string $msg): bool","166":" {","167":" $this-\u003EerrorMessage = preg_replace(\u0027{^(fopen|mkdir)\\(.*?\\): }\u0027, \u0027\u0027, $msg);","168":"","169":" return true;","170":" }","171":"","172":" private function getDirFromStream(string $stream): ?string","173":" {","174":" $pos = strpos($stream, \u0027:\/\/\u0027);","175":" if ($pos === false) {","176":" return dirname($stream);"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/StreamHandler.php","line_number":149,"method":"write","class":"Monolog\\Handler\\StreamHandler","code_snippet":{"134":" if (!is_resource($stream)) {","135":" $this-\u003Estream = null;","136":"","137":" throw new \\UnexpectedValueException(sprintf(\u0027The stream or file \u0022%s\u0022 could not be opened in append mode: \u0027.$this-\u003EerrorMessage, $url) . Utils::getRecordMessageForException($record));","138":" }","139":" stream_set_chunk_size($stream, $this-\u003EstreamChunkSize);","140":" $this-\u003Estream = $stream;","141":" }","142":"","143":" $stream = $this-\u003Estream;","144":" if ($this-\u003EuseLocking) {","145":" \/\/ ignoring errors here, there\u0027s not much we can do about them","146":" flock($stream, LOCK_EX);","147":" }","148":"","149":" $this-\u003EstreamWrite($stream, $record);","150":"","151":" if ($this-\u003EuseLocking) {","152":" flock($stream, LOCK_UN);","153":" }","154":" }","155":"","156":" \/**","157":" * Write to stream","158":" * @param resource $stream","159":" *\/","160":" protected function streamWrite($stream, LogRecord $record): void","161":" {","162":" fwrite($stream, (string) $record-\u003Eformatted);","163":" }"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/AbstractProcessingHandler.php","line_number":44,"method":"handle","class":"Monolog\\Handler\\AbstractProcessingHandler","code_snippet":{"29":" \/**","30":" * @inheritDoc","31":" *\/","32":" public function handle(LogRecord $record): bool","33":" {","34":" if (!$this-\u003EisHandling($record)) {","35":" return false;","36":" }","37":"","38":" if (\\count($this-\u003Eprocessors) \u003E 0) {","39":" $record = $this-\u003EprocessRecord($record);","40":" }","41":"","42":" $record-\u003Eformatted = $this-\u003EgetFormatter()-\u003Eformat($record);","43":"","44":" $this-\u003Ewrite($record);","45":"","46":" return false === $this-\u003Ebubble;","47":" }","48":"","49":" \/**","50":" * Writes the (already formatted) record down to the log of the implementing handler","51":" *\/","52":" abstract protected function write(LogRecord $record): void;","53":"","54":" public function reset(): void","55":" {","56":" parent::reset();","57":"","58":" $this-\u003EresetProcessors();"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Logger.php","line_number":389,"method":"addRecord","class":"Monolog\\Logger","code_snippet":{"374":" try {","375":" foreach ($this-\u003Eprocessors as $processor) {","376":" $record = $processor($record);","377":" }","378":" $recordInitialized = true;","379":" } catch (Throwable $e) {","380":" $this-\u003EhandleException($e, $record);","381":"","382":" return true;","383":" }","384":" }","385":"","386":" \/\/ once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted","387":" try {","388":" $handled = true;","389":" if (true === $handler-\u003Ehandle(clone $record)) {","390":" break;","391":" }","392":" } catch (Throwable $e) {","393":" $this-\u003EhandleException($e, $record);","394":"","395":" return true;","396":" }","397":" }","398":"","399":" return $handled;","400":" } finally {","401":" if ($this-\u003EdetectCycles) {","402":" if (isset($fiber)) {","403":" $this-\u003EfiberLogDepth[$fiber]--;"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Logger.php","line_number":644,"method":"error","class":"Monolog\\Logger","code_snippet":{"629":" public function warning(string|\\Stringable $message, array $context = []): void","630":" {","631":" $this-\u003EaddRecord(Level::Warning, (string) $message, $context);","632":" }","633":"","634":" \/**","635":" * Adds a log record at the ERROR level.","636":" *","637":" * This method allows for compatibility with common interfaces.","638":" *","639":" * @param string|Stringable $message The log message","640":" * @param mixed[] $context The log context","641":" *\/","642":" public function error(string|\\Stringable $message, array $context = []): void","643":" {","644":" $this-\u003EaddRecord(Level::Error, (string) $message, $context);","645":" }","646":"","647":" \/**","648":" * Adds a log record at the CRITICAL level.","649":" *","650":" * This method allows for compatibility with common interfaces.","651":" *","652":" * @param string|Stringable $message The log message","653":" * @param mixed[] $context The log context","654":" *\/","655":" public function critical(string|\\Stringable $message, array $context = []): void","656":" {","657":" $this-\u003EaddRecord(Level::Critical, (string) $message, $context);","658":" }"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Log\/Logger.php","line_number":184,"method":"writeLog","class":"Illuminate\\Log\\Logger","code_snippet":{"169":" public function write($level, $message, array $context = []): void","170":" {","171":" $this-\u003EwriteLog($level, $message, $context);","172":" }","173":"","174":" \/**","175":" * Write a message to the log.","176":" *","177":" * @param string $level","178":" * @param \\Illuminate\\Contracts\\Support\\Arrayable|\\Illuminate\\Contracts\\Support\\Jsonable|\\Illuminate\\Support\\Stringable|array|string $message","179":" * @param array $context","180":" * @return void","181":" *\/","182":" protected function writeLog($level, $message, $context): void","183":" {","184":" $this-\u003Elogger-\u003E{$level}(","185":" $message = $this-\u003EformatMessage($message),","186":" $context = array_merge($this-\u003Econtext, $context)","187":" );","188":"","189":" $this-\u003EfireLogEvent($level, $message, $context);","190":" }","191":"","192":" \/**","193":" * Add context to all future logs.","194":" *","195":" * @param array $context","196":" * @return $this","197":" *\/","198":" public function withContext(array $context = [])"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Log\/Logger.php","line_number":97,"method":"error","class":"Illuminate\\Log\\Logger","code_snippet":{"82":" *\/","83":" public function critical($message, array $context = []): void","84":" {","85":" $this-\u003EwriteLog(__FUNCTION__, $message, $context);","86":" }","87":"","88":" \/**","89":" * Log an error message to the logs.","90":" *","91":" * @param \\Illuminate\\Contracts\\Support\\Arrayable|\\Illuminate\\Contracts\\Support\\Jsonable|\\Illuminate\\Support\\Stringable|array|string $message","92":" * @param array $context","93":" * @return void","94":" *\/","95":" public function error($message, array $context = []): void","96":" {","97":" $this-\u003EwriteLog(__FUNCTION__, $message, $context);","98":" }","99":"","100":" \/**","101":" * Log a warning message to the logs.","102":" *","103":" * @param \\Illuminate\\Contracts\\Support\\Arrayable|\\Illuminate\\Contracts\\Support\\Jsonable|\\Illuminate\\Support\\Stringable|array|string $message","104":" * @param array $context","105":" * @return void","106":" *\/","107":" public function warning($message, array $context = []): void","108":" {","109":" $this-\u003EwriteLog(__FUNCTION__, $message, $context);","110":" }","111":""},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Log\/LogManager.php","line_number":693,"method":"error","class":"Illuminate\\Log\\LogManager","code_snippet":{"678":" public function critical($message, array $context = []): void","679":" {","680":" $this-\u003Edriver()-\u003Ecritical($message, $context);","681":" }","682":"","683":" \/**","684":" * Runtime errors that do not require immediate action but should typically","685":" * be logged and monitored.","686":" *","687":" * @param string|\\Stringable $message","688":" * @param array $context","689":" * @return void","690":" *\/","691":" public function error($message, array $context = []): void","692":" {","693":" $this-\u003Edriver()-\u003Eerror($message, $context);","694":" }","695":"","696":" \/**","697":" * Exceptional occurrences that are not errors.","698":" *","699":" * Example: Use of deprecated APIs, poor use of an API, undesirable things","700":" * that are not necessarily wrong.","701":" *","702":" * @param string|\\Stringable $message","703":" * @param array $context","704":" * @return void","705":" *\/","706":" public function warning($message, array $context = []): void","707":" {"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Exceptions\/Handler.php","line_number":376,"method":"reportThrowable","class":"Illuminate\\Foundation\\Exceptions\\Handler","code_snippet":{"361":" }","362":"","363":" try {","364":" $logger = $this-\u003EnewLogger();","365":" } catch (Exception) {","366":" throw $e;","367":" }","368":"","369":" $level = Arr::first(","370":" $this-\u003Elevels, fn ($level, $type) =\u003E $e instanceof $type, LogLevel::ERROR","371":" );","372":"","373":" $context = $this-\u003EbuildExceptionContext($e);","374":"","375":" method_exists($logger, $level)","376":" ? $logger-\u003E{$level}($e-\u003EgetMessage(), $context)","377":" : $logger-\u003Elog($level, $e-\u003EgetMessage(), $context);","378":" }","379":"","380":" \/**","381":" * Determine if the exception should be reported.","382":" *","383":" * @param \\Throwable $e","384":" * @return bool","385":" *\/","386":" public function shouldReport(Throwable $e)","387":" {","388":" return ! $this-\u003EshouldntReport($e);","389":" }","390":""},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Exceptions\/Handler.php","line_number":337,"method":"report","class":"Illuminate\\Foundation\\Exceptions\\Handler","code_snippet":{"322":" * Report or log an exception.","323":" *","324":" * @param \\Throwable $e","325":" * @return void","326":" *","327":" * @throws \\Throwable","328":" *\/","329":" public function report(Throwable $e)","330":" {","331":" $e = $this-\u003EmapException($e);","332":"","333":" if ($this-\u003EshouldntReport($e)) {","334":" return;","335":" }","336":"","337":" $this-\u003EreportThrowable($e);","338":" }","339":"","340":" \/**","341":" * Reports error based on report method on exception or to logger.","342":" *","343":" * @param \\Throwable $e","344":" * @return void","345":" *","346":" * @throws \\Throwable","347":" *\/","348":" protected function reportThrowable(Throwable $e): void","349":" {","350":" $this-\u003EreportedExceptionMap[$e] = true;","351":""},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/app\/Exceptions\/Handler.php","line_number":37,"method":"report","class":"App\\Exceptions\\Handler","code_snippet":{"22":" *\/","23":" protected $dontFlash = [","24":" \u0027password\u0027,","25":" \u0027password_confirmation\u0027,","26":" ];","27":"","28":" \/**","29":" * Report or log an exception.","30":" *","31":" * @param \\Throwable $exception","32":" * @return void","33":" *","34":" * @throws \\Exception","35":" *\/","36":" public function report(Throwable $exception) {","37":" parent::report($exception);","38":" }","39":"","40":" \/**","41":" * Render an exception into an HTTP response.","42":" *","43":" * @param \\Illuminate\\Http\\Request $request","44":" * @param \\Throwable $exception","45":" * @return \\Symfony\\Component\\HttpFoundation\\Response","46":" *","47":" * @throws \\Throwable","48":" *\/","49":" \/**","50":" * Render an exception into an HTTP response.","51":" * [NEXTLOOP] modified render method"},"arguments":null,"application_frame":true},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line_number":497,"method":"reportException","class":"Illuminate\\Foundation\\Http\\Kernel","code_snippet":{"482":" * @return array","483":" *\/","484":" protected function bootstrappers()","485":" {","486":" return $this-\u003Ebootstrappers;","487":" }","488":"","489":" \/**","490":" * Report the exception to the exception handler.","491":" *","492":" * @param \\Throwable $e","493":" * @return void","494":" *\/","495":" protected function reportException(Throwable $e)","496":" {","497":" $this-\u003Eapp[ExceptionHandler::class]-\u003Ereport($e);","498":" }","499":"","500":" \/**","501":" * Render the exception to a response.","502":" *","503":" * @param \\Illuminate\\Http\\Request $request","504":" * @param \\Throwable $e","505":" * @return \\Symfony\\Component\\HttpFoundation\\Response","506":" *\/","507":" protected function renderException($request, Throwable $e)","508":" {","509":" return $this-\u003Eapp[ExceptionHandler::class]-\u003Erender($request, $e);","510":" }","511":""},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Kernel.php","line_number":146,"method":"handle","class":"Illuminate\\Foundation\\Http\\Kernel","code_snippet":{"131":" \/**","132":" * Handle an incoming HTTP request.","133":" *","134":" * @param \\Illuminate\\Http\\Request $request","135":" * @return \\Illuminate\\Http\\Response","136":" *\/","137":" public function handle($request)","138":" {","139":" $this-\u003ErequestStartedAt = Carbon::now();","140":"","141":" try {","142":" $request-\u003EenableHttpMethodParameterOverride();","143":"","144":" $response = $this-\u003EsendRequestThroughRouter($request);","145":" } catch (Throwable $e) {","146":" $this-\u003EreportException($e);","147":"","148":" $response = $this-\u003ErenderException($request, $e);","149":" }","150":"","151":" $this-\u003Eapp[\u0027events\u0027]-\u003Edispatch(","152":" new RequestHandled($request, $response)","153":" );","154":"","155":" return $response;","156":" }","157":"","158":" \/**","159":" * Send the given request through the middleware \/ router.","160":" *"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/index.php","line_number":91,"method":"[top]","class":null,"code_snippet":{"69":"| Set the base_path() to this root directory","70":"| also changed \u0027config\/filesystems\u0027 to use \u0027base_path\u0027","71":"|","72":" *\/","73":"$app-\u003Ebind(\u0027path.base\u0027, function () {","74":" return __DIR__;","75":"});","76":"","77":"\/*","78":"|--------------------------------------------------------------------------","79":"| Run The Application","80":"|--------------------------------------------------------------------------","81":"|","82":"| Once we have the application, we can handle the incoming request","83":"| through the kernel, and send the associated response back to","84":"| the client\u0027s browser allowing them to enjoy the creative","85":"| and wonderful application we have prepared for them.","86":"|","87":" *\/","88":"","89":"$kernel = $app-\u003Emake(Illuminate\\Contracts\\Http\\Kernel::class);","90":"","91":"$response = $kernel-\u003Ehandle(","92":" $request = Illuminate\\Http\\Request::capture()","93":");","94":"","95":"$response-\u003Esend();","96":"","97":"$kernel-\u003Eterminate($request, $response);","98":""},"arguments":[],"application_frame":false}],"context":{"request":{"url":"https:\/\/www.daihocfpt.edu.vn\/","ip":null,"method":"GET","useragent":"Mozilla\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/62.0.3202.94 Safari\/537.36"},"request_data":{"queryString":[],"body":[],"files":[]},"headers":{"x-forwarded-proto":"https","cf-visitor":"{\u0022scheme\u0022:\u0022https\u0022}","cf-ipcountry":"VN","cf-connecting-ip":"103.110.85.167","cdn-loop":"cloudflare; loops=1","accept":"*\/*","accept-encoding":"gzip, br","user-agent":"Mozilla\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/62.0.3202.94 Safari\/537.36","cf-ray":"9b0f05bcaffe3db1-SIN","x-forwarded-for":"103.110.85.167","host":"www.daihocfpt.edu.vn"},"cookies":[],"session":[],"route":{"route":null,"routeParameters":[],"controllerAction":"Closure","middleware":["web"]},"env":{"php_version":"8.3.15","laravel_version":"11.4.0","laravel_locale":"english","laravel_config_cached":false,"app_debug":true,"app_env":"production"},"dumps":[],"logs":[{"message":"Optional parameter $menu declared before required parameter $module_name is implicitly treated as a required parameter in \/www\/wwwroot\/crm.gpcns.com\/application\/app\/Http\/Middleware\/Modules\/Menus.php on line 585","level":"warning","context":[],"microtime":1766232478.489983}],"queries":[]},"stage":"production","message_level":null,"open_frame_index":null,"application_path":"\/www\/wwwroot\/crm.gpcns.com\/application","application_version":null,"tracking_uuid":"ccde3e93-ec0b-472c-b454-e2383f2b7a15"},"shareableReport":{"notifier":"Laravel Client","language":"PHP","framework_version":"11.4.0","language_version":"8.3.15","exception_class":"ErrorException","seen_at":1766232478,"message":"fwrite(): Write of 3193 bytes failed with errno=28 No space left on device","glows":[],"solutions":[],"documentation_links":[],"stacktrace":[{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/StreamHandler.php","line_number":162,"method":"streamWrite","class":"Monolog\\Handler\\StreamHandler","code_snippet":{"147":" }","148":"","149":" $this-\u003EstreamWrite($stream, $record);","150":"","151":" if ($this-\u003EuseLocking) {","152":" flock($stream, LOCK_UN);","153":" }","154":" }","155":"","156":" \/**","157":" * Write to stream","158":" * @param resource $stream","159":" *\/","160":" protected function streamWrite($stream, LogRecord $record): void","161":" {","162":" fwrite($stream, (string) $record-\u003Eformatted);","163":" }","164":"","165":" private function customErrorHandler(int $code, string $msg): bool","166":" {","167":" $this-\u003EerrorMessage = preg_replace(\u0027{^(fopen|mkdir)\\(.*?\\): }\u0027, \u0027\u0027, $msg);","168":"","169":" return true;","170":" }","171":"","172":" private function getDirFromStream(string $stream): ?string","173":" {","174":" $pos = strpos($stream, \u0027:\/\/\u0027);","175":" if ($pos === false) {","176":" return dirname($stream);"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/StreamHandler.php","line_number":149,"method":"write","class":"Monolog\\Handler\\StreamHandler","code_snippet":{"134":" if (!is_resource($stream)) {","135":" $this-\u003Estream = null;","136":"","137":" throw new \\UnexpectedValueException(sprintf(\u0027The stream or file \u0022%s\u0022 could not be opened in append mode: \u0027.$this-\u003EerrorMessage, $url) . Utils::getRecordMessageForException($record));","138":" }","139":" stream_set_chunk_size($stream, $this-\u003EstreamChunkSize);","140":" $this-\u003Estream = $stream;","141":" }","142":"","143":" $stream = $this-\u003Estream;","144":" if ($this-\u003EuseLocking) {","145":" \/\/ ignoring errors here, there\u0027s not much we can do about them","146":" flock($stream, LOCK_EX);","147":" }","148":"","149":" $this-\u003EstreamWrite($stream, $record);","150":"","151":" if ($this-\u003EuseLocking) {","152":" flock($stream, LOCK_UN);","153":" }","154":" }","155":"","156":" \/**","157":" * Write to stream","158":" * @param resource $stream","159":" *\/","160":" protected function streamWrite($stream, LogRecord $record): void","161":" {","162":" fwrite($stream, (string) $record-\u003Eformatted);","163":" }"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Handler\/AbstractProcessingHandler.php","line_number":44,"method":"handle","class":"Monolog\\Handler\\AbstractProcessingHandler","code_snippet":{"29":" \/**","30":" * @inheritDoc","31":" *\/","32":" public function handle(LogRecord $record): bool","33":" {","34":" if (!$this-\u003EisHandling($record)) {","35":" return false;","36":" }","37":"","38":" if (\\count($this-\u003Eprocessors) \u003E 0) {","39":" $record = $this-\u003EprocessRecord($record);","40":" }","41":"","42":" $record-\u003Eformatted = $this-\u003EgetFormatter()-\u003Eformat($record);","43":"","44":" $this-\u003Ewrite($record);","45":"","46":" return false === $this-\u003Ebubble;","47":" }","48":"","49":" \/**","50":" * Writes the (already formatted) record down to the log of the implementing handler","51":" *\/","52":" abstract protected function write(LogRecord $record): void;","53":"","54":" public function reset(): void","55":" {","56":" parent::reset();","57":"","58":" $this-\u003EresetProcessors();"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Logger.php","line_number":389,"method":"addRecord","class":"Monolog\\Logger","code_snippet":{"374":" try {","375":" foreach ($this-\u003Eprocessors as $processor) {","376":" $record = $processor($record);","377":" }","378":" $recordInitialized = true;","379":" } catch (Throwable $e) {","380":" $this-\u003EhandleException($e, $record);","381":"","382":" return true;","383":" }","384":" }","385":"","386":" \/\/ once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted","387":" try {","388":" $handled = true;","389":" if (true === $handler-\u003Ehandle(clone $record)) {","390":" break;","391":" }","392":" } catch (Throwable $e) {","393":" $this-\u003EhandleException($e, $record);","394":"","395":" return true;","396":" }","397":" }","398":"","399":" return $handled;","400":" } finally {","401":" if ($this-\u003EdetectCycles) {","402":" if (isset($fiber)) {","403":" $this-\u003EfiberLogDepth[$fiber]--;"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/monolog\/monolog\/src\/Monolog\/Logger.php","line_number":644,"method":"error","class":"Monolog\\Logger","code_snippet":{"629":" public function warning(string|\\Stringable $message, array $context = []): void","630":" {","631":" $this-\u003EaddRecord(Level::Warning, (string) $message, $context);","632":" }","633":"","634":" \/**","635":" * Adds a log record at the ERROR level.","636":" *","637":" * This method allows for compatibility with common interfaces.","638":" *","639":" * @param string|Stringable $message The log message","640":" * @param mixed[] $context The log context","641":" *\/","642":" public function error(string|\\Stringable $message, array $context = []): void","643":" {","644":" $this-\u003EaddRecord(Level::Error, (string) $message, $context);","645":" }","646":"","647":" \/**","648":" * Adds a log record at the CRITICAL level.","649":" *","650":" * This method allows for compatibility with common interfaces.","651":" *","652":" * @param string|Stringable $message The log message","653":" * @param mixed[] $context The log context","654":" *\/","655":" public function critical(string|\\Stringable $message, array $context = []): void","656":" {","657":" $this-\u003EaddRecord(Level::Critical, (string) $message, $context);","658":" }"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Log\/Logger.php","line_number":184,"method":"writeLog","class":"Illuminate\\Log\\Logger","code_snippet":{"169":" public function write($level, $message, array $context = []): void","170":" {","171":" $this-\u003EwriteLog($level, $message, $context);","172":" }","173":"","174":" \/**","175":" * Write a message to the log.","176":" *","177":" * @param string $level","178":" * @param \\Illuminate\\Contracts\\Support\\Arrayable|\\Illuminate\\Contracts\\Support\\Jsonable|\\Illuminate\\Support\\Stringable|array|string $message","179":" * @param array $context","180":" * @return void","181":" *\/","182":" protected function writeLog($level, $message, $context): void","183":" {","184":" $this-\u003Elogger-\u003E{$level}(","185":" $message = $this-\u003EformatMessage($message),","186":" $context = array_merge($this-\u003Econtext, $context)","187":" );","188":"","189":" $this-\u003EfireLogEvent($level, $message, $context);","190":" }","191":"","192":" \/**","193":" * Add context to all future logs.","194":" *","195":" * @param array $context","196":" * @return $this","197":" *\/","198":" public function withContext(array $context = [])"},"arguments":null,"application_frame":false},{"file":"\/www\/wwwroot\/crm.gpcns.com\/application\/vendor\/laravel\/framework\/src\/Illuminate\/Log\/Logger.php","line_number":97,"method":"error","class":"Illuminate\\Log\\Logger","code_snippet":{"82":" *\/","83":" public function critical($message, array $context = []): void","84":" {","85":" $this-\u003EwriteLog(__FUNCTION__, $message, $context);","86":" }","87":"","88":" \/**","89":" * Log an error message to the logs.","90":" *","91":" * @param \\Illuminate\\Contracts\\Support\\Arrayable|\\Illuminate\\Contracts\\Support\\Jsonable|\\Illuminate\\Support\\Stringable|array|string $message","92":" * @param array $context","93":" * @return void","94":" *\/","95":" public function error($message, array $context = []): void","96":" {","97":" $this-\u003EwriteLog(__FUNCTION__, $message, $context);","98":" }","99":"","100":" \/**","101":" * Log a warning message to the logs.","102":" *","103":" * @param \\Illumin
Từ khóa » Fpt Dại Học
-
Trường Đại Học FPT - Trang Thông Tin Tuyển Sinh Chính Thức Của ...
-
Đại Học FPT TP. HCM
-
Đại Học FPT (Cơ Sở Hà Nội)
-
Thông Tin Tuyển Sinh Trường Đại Học FPT - Home | Facebook
-
FPT University HCM - Home | Facebook
-
Trường Đại Học FPT – Wikipedia Tiếng Việt
-
Trường Đại Học FPT - Tin Tức Mới Nhất Về Trường FPT - VnExpress
-
Trường Đại Học FPT - Thông Tin Tuyển Sinh
-
Trường đại Học FPT Liệu Có Chất Lượng Như Lời đồn? - Edunet
-
Đại Học FPT - YouTube
-
Mã Ngành, Tổ Hợp Xét Tuyển Đại Học FPT Năm 2022
-
Trường Đại Học FPT - Trang Tuyển Sinh
-
FPT University (Dai Hoc FPT) - LinkedIn
-
Thông Tin Tuyển Sinh Trường Đại Học FPT TPHCM Năm 2020