441 questions
3
votes
1
answer
266
views
How to configure PowerShell 7 to output error messages without formatting?
I switched from PowerShell 5.1 to the latest PowerShell 7.5.1 and noticed that the errors that my scripts produce are formatted differently. This runs on Windows Server 2019 Standard [Version 10.0....
0
votes
3
answers
190
views
Is There a Better Way to Stringify Error Codes?
This is more of an aesthetic question than a purely functional one, but I want to know if there's any answer. See, I'm programming an error reporter for a project I've recently begun working on, and ...
1
vote
0
answers
67
views
PHP with error_reporting E_ALL ignores <?php}?> while it should error
I had made a booboo in a script by writing <?php}?> instead of <?php }?>.
My local Xampp server did not complain and happily served the file, while my actual server served a blank page and ...
0
votes
0
answers
631
views
How can I access errors[] collection after transfer failed?
may I ask some help about accessing detailed error log for failed transfer in BigQuery?
I have this message in the transfer run details (some data is altered to keep anonymity):
Error while reading ...
-1
votes
1
answer
48
views
i'm writing in c, why is my code not running? I drawn on the ss the error
sshot
I didnt understood why this message apeared in my terminal:
Please enter your 1st variable that you want to calculate the percentage of without any spaces:
morangos
PS C:\Users\...
0
votes
0
answers
433
views
GCP Slack error reporting is not working anymore
Slack integration for error reporting suddenly stopped working. Anyone experienced similar issues?
We also removed the slack channel integration and redid it. Sadly no improvement. Also worth noting ...
0
votes
1
answer
345
views
How to send a error in google error reporting with no reportLocation
I'm trying to report errors using the Google Cloud Error Reporting api. I want log them with their stackTrace. I do not want to use context.reportLocation
It is mentioned here that
message:string
[...
0
votes
1
answer
256
views
Conda importing an existing environment error
I'm trying to import an existing environment through conda using the code:
conda env create -f D:\Courses\Udacity-Courses\'Introduction to Data Analysis'\Supporting-Material\dand-env-win.yaml
but I ...
0
votes
1
answer
407
views
Bugsnag via segment not showing any error in their dashboard
I've integrated bugsnag in react native via segment and followed all the steps provided by segment documents but still, it's not showing any sort of error or log in bugsnag dashboard. Should I ...
0
votes
2
answers
1k
views
Reporting Endpoints not parsing
In my localhost page, I am returning this header:
Reporting-Endpoints: main-endpoint="https://[brand].report-uri.com/a/d/g", csp-endpoint="https://[brand].report-uri.com/r/d/csp/enforce&...
9
votes
3
answers
5k
views
Flutter - Sentry how to send event and stop sending in debug mode
How to send specific information in Sentry ? There is Events in documentation but how to use them properly and where exactly to use them (EX: Send user email with the error) ?
Sentry provided this ...
-1
votes
1
answer
140
views
Error report for execution and query intent in the test suite of the google action
Our project passed “Turn on” execution and query in the test
suite of the google action.
But “Turn off” execution and query failed and I couldn’t find in our part.
After “Turn off” execution, I ...
0
votes
3
answers
713
views
Error with coordinates of skeleton_to_csgraph (python)
I am using skeleton-to-csgraph() to analyse the skeleton I have obtained and this function should send me back some data and among them, all the coordinates of all the points of the skeleton in a ...
3
votes
1
answer
2k
views
Compare Sentry with Google Error Reporting
I'm trying to see if we can replace Sentry with Google Error Reporting for unhandled errors in the production stage but when I research to compare the 2, not much came up. Even on stackoverflow, it ...
-1
votes
1
answer
187
views
erorr AttributeError: 'list' object has no attribute 'send_keys'
my code is this:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
class instagrambot:
def __init__(self, username,password):
self.username = ...
2
votes
1
answer
440
views
PHP Built-in web server and syntax error in a router script
I am using PHP Built-in web server for testing purposes. For example, with a simple router script:
<?php
echo 'Hello world';
Launching it with php -S localhost:8000 router.php. Works.
Now, let't ...
2
votes
0
answers
84
views
I/O error during writeback of mmaped file
Is there any standard (POSIX etc) OS behaviour for handling errors during mmap writeback?
Is this even documented somewhere as stable implementation?
Case 1:
Some program doing mmap(), writing to that ...
3
votes
1
answer
925
views
Reporting api: Is there a way to debug why reports are failing to upload
I'm trying to setup a site with network error logging. This uses the reporting api to generate and send reports about the end user's experience and gives access to lower level information for network ...
0
votes
1
answer
437
views
NGINX / PHP7.4-FPM throws 502 without error_reporting enabled
yesterday I stumbled across a weird problem. Suddenly a specific PHP script didn't work anymore, it threw a 502 error. When I enabled error_reporting, only notices / warnings are displayed, but the ...
1
vote
1
answer
80
views
Why php still report errors?
In simplesamlPHP library there is code
Logger::maskErrors(E_ALL);
$hidden = in_array(
self::$HIDE_FROM_DISCOVERY,
$metadata['EntityAttributes'][self::$ENTITY_CATEGORY],
true
);
Logger::...
0
votes
0
answers
37
views
folder to locate the pop up $error message in this code
I need to edit the error that shows if a user enters an amount below minimum but I can't find the file to edit the pop-up error response that shows if the amount I less than the withdrawal limit.
...
0
votes
2
answers
6k
views
PHP error_reporting to suppress notices and warnings
I have this set in php.ini:
error_reporting = E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED ^ E_STRICT
Yet I'm still seeing things like this:
Warning: count(): Parameter must be an array or an object ...
0
votes
0
answers
598
views
Disable_error_and_usage_SQLserver
Q: How disable ,Microsoft SQL server Error and usage data reporting?
Microsoft:
By default, Microsoft SQL Server collects information about how its
customers are using the application. ...
0
votes
1
answer
3k
views
Codeigniter 3 shows errors in production mode
I'm using Codeigniter 3 in production mode but errors are displayed. My web server is Wampserver 3.1.7 with it's default php.ini. How can I disable error reporting?
This is part of my index.php:
...
0
votes
2
answers
494
views
PHP notices shown even display_errors is Off and error_reporting is 0
VmWare Cloud Server
CentOS Linux 7.6.1810 - Php 5.6.40 - Apache/2.4.6
test.php
<?php
echo($x);
phpinfo();
?>
Output :
Notice: Undefined variable x in /var/www/html/test.php on line 1
In ...