Questions tagged as 'log'

1
answer

How to detect MySQL changes in NodeJS?

Good evening, Has anyone used this package or do you know of a similar one that works? Link: link Purpose: to launch an event when there is a change in the database. Before I gave an error saying that it was not allowed to monitor my...
asked by 29.06.2016 / 23:28
1
answer

Why do errors in PHP scripts run via the command line do not appear in the apache error log?

It is important to note that errors occurring in PHP script execution via browser are registered without any problem in the file: /var/log/apache2/error.log . The problem only happens when scripts are executed via the command line. T...
asked by 03.07.2016 / 02:15
2
answers

Java Desktop Application Audit Log

Thinking about a Java desktop application that is running in a company, we may come across situations where the user may cause flaws in your application, in this case could create a in> error and an audit to know which error was caused and ho...
asked by 21.10.2015 / 14:12
1
answer

Error log in Java application

We developers when coding, we have how to track the process of running a software through the output of the IDE, but when the software goes to production and we no longer have the development environment, how can we map an error that happened fo...
asked by 31.08.2015 / 20:30
1
answer

How to implement a process queue in Delphi 6?

How to implement a process queue in Delphi 6 as the TThread.Queue of the newer versions? What I need is to implement a queue for logging with Delphi 6. In newer versions I have the ability to use: procedure TFormClient.QueueLogMs...
asked by 25.06.2014 / 15:53
1
answer

Is there a technique for reporting Javascript errors?

It is the following: I use the Laravel Framework and, in it, I configure the application so that when a server error happens, it sends me an email, writes to a log file and / or sends me a message in the Telegram. This kind of helps me anticip...
asked by 26.10.2018 / 18:27
2
answers

File supposedly being used can not be deleted

I have software that logs logs of errors from it even inside a "logs" folder. Each log file is created with the date of the current day, and is therefore unique to the current day. Example: 30-04-2014.log . I use StreamWriter to log t...
asked by 30.04.2014 / 11:43
1
answer

How to improve the viewing of log files?

I'm trying to analyze some log files generated in Linux and I've noticed that it's very annoying to understand where a line is starting / ending. I would like to know if there is any kind of command or tools for better visualization of logs....
asked by 20.06.2017 / 15:40
1
answer

Error in plot.window (...): need finite 'ylim' values

I have a continuous variable whose n=15000 remarks and displays 451 NA's. When running qqnorm to evaluate the normality, I verified that it does not present normality and so I applied a logarithmic transformation. However, when run...
asked by 07.09.2017 / 14:06
1
answer

How to get the last query executed by CakePHP?

I want to get the last query executed by CakePHP Example $data = $this->Ticket->find('all', array('conditions' => $conditions, 'order' => array('Ticket.id' => 'DESC'))); $this->query = $this->Ticket->getLa...
asked by 11.07.2014 / 23:41