Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
69 views

I created a Linux DB2 stored procedure for the purpose of either dropping or adding 7 constraints over 5 tables. I always want to do all 7 and just report individual return codes (SQLCODE) from each. ...
Dave Clark's user avatar
0 votes
1 answer
47 views

The twilio error logs indicate they can record error messages of some kind (they have a "Message" section in "Properties" near the top of each error event). https://console.twilio....
mpr's user avatar
  • 3,388
1 vote
2 answers
433 views

Using .NET 9, I have created a Windows Service following Microsoft tutorial. As per this tutorial, my code looks like: public sealed class WindowsBackgroundService ( MyService _myService, ...
M.M's user avatar
  • 143k
0 votes
1 answer
18 views

I feel like I've tried everything. I have a .NET Web API that I deployed but don't seem to be able to tell if the app even started. The app is essentially a starter app that serves react AND API ...
El_bosteador's user avatar
0 votes
1 answer
239 views

I'm planning to integrate PostHog into my Flutter program. After the user logs in to my app, I want to modify the PostHog project. Add your PostHog configuration to the AndroidManifest.xml file: <...
Gowtham's user avatar
  • 51
1 vote
0 answers
236 views

I want to set the default logger GIN is using zerolog and print to the os.Stdout, but when log level is error it should print it to a file in func main.go func main() { zerolog.TimeFieldFormat = &...
Lutfi Khoirudin's user avatar
2 votes
1 answer
2k views

I'm trying to set up an ELK based observability system in our project. So I started with revising a logging system in our Django based project. I have decided to start with structlog in order to ...
ruslaniv's user avatar
  • 664
0 votes
1 answer
1k views

I'm trying to set up logging in an Axum app, I have the logging working but the thing that bothers me is the need to do error("OHNOES SOMETHING WENT WRONG") in every single error branch. I ...
Thermatix's user avatar
  • 2,979
1 vote
0 answers
919 views

I have a git repository where some JUnit-Tests fail in github-actions while local JUnit-Tests are ok. Is there a way to get the failing report? from https://github.com/k3b/calef/actions/runs/...
k3b's user avatar
  • 14.8k
-1 votes
1 answer
198 views

Our IT people are complaining about the log entries growing on our 2016 SQL Server database. I've tried to limit the logging, but everything I do doesn't seem to help. We are still seeing message ...
Scot Styer's user avatar
0 votes
1 answer
357 views

**Hi, I recently installed Moodle 4.0 on my Ubuntu server 20.04 and It came with Big Blue Button Plugin integrated offered by Blindside Networks. The BBB works perfectly fine and records. The problem ...
Lesy Reeds's user avatar
0 votes
0 answers
159 views

Question: Info logs are not output in the subpackage (C2). Error log output from C2. Project structure enter image description here application-local.yml logging: config: classpath:log4j2-prd.xml ...
buff292kks's user avatar
0 votes
1 answer
32 views

I need to store logs in a way so, Info -> App.log Error -> Error.log. I am using log4j for logging in my applicaion. I am trying to different level logs in different files but something going ...
Sayantan Maji's user avatar
0 votes
1 answer
632 views

I am not able to send logs with other fields like " %(asctime)s-%(correlation_id)s-%(levelname)s-%(message)s- " using any handler in new relic. I was able to see normal logs in console using ...
tanvi's user avatar
  • 1
0 votes
1 answer
197 views

I have a React Native mobile app on the Apple App Store and Google Play Store. A user observed an error while using the app, but they have since closed the app. I was debugging locally and I couldn't ...
Franco Wanseéle's user avatar
0 votes
0 answers
66 views

I am working on a mac machine running macOS 13 and using PHP 7.3. When the error_log is using, along with that so many NUL showing in the log file in red background. The file size getting enormously ...
Arun's user avatar
  • 3,751
0 votes
0 answers
29 views

I am developing PHP websites on my own and want to turn off displaying error messages to the browser as sites move into production. I thought about setting up Monolog but am worried that with just me ...
user3425506's user avatar
  • 1,467
0 votes
0 answers
169 views

I'm working on a site that uses Twig-templates via Timber - and there is this "great" convention, that whenever something is wrong there, the entire Timber::context is written to the error ...
Zeth's user avatar
  • 2,842
0 votes
1 answer
256 views

I have a PowerShell script that creates a Scheduled Task. I deploy this script through MEM/Intune and it is currently erroring out. I need to know if there is a way to determine exactly why and/or ...
GrayVi02's user avatar
1 vote
1 answer
91 views

Need help here. We have java apps started from our shell scripts in unix using java command and the output is redirected to a nohup file to ensure we capture any SystemOuts and any unhandled ...
Achilles's user avatar
5 votes
1 answer
2k views

I'm trying to understand the behaviour of the logging module when using basicConfig with multiple handlers. My aim is to have warning level on syslog messages, and debug level to a log file. This is ...
johnmcp's user avatar
  • 931
0 votes
0 answers
89 views

Folks, I want to just have a runlog of whether everything has run as per expectation in the Module that's been written and I made use of logging (and dictConfig) for that purpose. I can see the files ...
aadya bajaj's user avatar
1 vote
0 answers
200 views

Trying to implement a DB logger in my Django project but I am facing a problem in managing the logs in my DB so how can I automatically delete the old records from DB settings.py INSTALLED_APPS = ['...
Adarsh Srivastav's user avatar
2 votes
0 answers
81 views

I have a NodeJS app with a Service-oriented architecture; my controllers interacts with services, and services interacts with the data access layer and external APIs. Does anyone know of any best ...
erikkjer's user avatar
  • 319
1 vote
3 answers
3k views

I have a long script which I run on a remote server and I want to log all outputs as well as error messages to a file. I know how to log all terminal outputs (e.g. print()) to a .txt file: # in ...
Moritz's user avatar
  • 3,225

1
2 3 4 5
17