Welcome To Snipplr
Everyone's Recent Snippets Tagged log
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
Show a colored and meaningful view of a GIT repository in the shell
0
1217
posted 8 years ago by rm1984
Regular Expression to find native Javascript console and AngularJS $log log warn or info that are NOT comments / commented out
1
1124
posted 8 years ago by brandonjp
// create a variable to toggle debugging
// to use it, just call debug(with,any,optional,parameters)
debug(x,y,z);
// it will try to guess what type of message to log, or you can specify in the first parameter
debug("error",x,y,z);
1
1111
posted 9 years ago by brandonjp
This example shows you how to log errors to a file, and prevent showing them to the user. Make sure that the file exists and you're able to write to it.
0
974
posted 10 years ago by apphp-snippets
These logging functions will be improved and added into the SocketServer_Server.py to log information from programs on machines on the same network, but not directly connected to each other.
0
1003
posted 10 years ago by JordanRowles
In this post you will learn how to log errors in database in cakephp.
0
889
posted 10 years ago by kp32
Groovy script for hudson's scripler/script console (for latter case import line could be removed) aborting running builds with loo large logs.
0
968
posted 10 years ago by alces
Output your errors to the Windows event log. Very effective to output from try catch blocks.
2
830
posted 12 years ago by Verician
This is a simple batch script to clear the event logs from a windows 7 or server 2008 machine. The script does *not* save these logs. This was tested on a local machine but could be adapted for remote use.
1
1208
posted 12 years ago by Rectifier
It can be useful to take a peek at what Apache is doing but I always forget the location of the Apache logs so I can use tail.
0
791
posted 12 years ago by inreflection7
For impl of 'simpleLog', in eclipse, the default instructions did not work for me , providing LEVEL_ALL logs until i added one additional prop not mentioned in the link
0
726
posted 12 years ago by rowntreerob
Helps to manage console.log debug in js when broswing in IE. If alertFallback is enabled, you can see js alerts appears of vars tracked.
0
839
posted 12 years ago by Simounet
Tiny script to write a daily logfile with the serverload. Can be run every X minutes using a cron for example.
Result in logfile:
13.40 | 2.45 2.45 2.43
13.45 | 1.62 2.02 2.25
0
733
posted 13 years ago by remko
Basically creates a log function on the window object and uses console.log or alert depending on which is supported. Very basic and simple but definitely useful.
0
742
posted 13 years ago by alvincrespo
This class can log messages to a file. If the log file becomes too large (over 1MB), the class will archive it and will create new. If there are archives older than one month, they will be deleted automatically.
In the future versions I will add th...
0
933
posted 13 years ago by stz184
So i wanted to spit all my error_log(); and error_reporting(E_ALL); to syslog on my MacOSX and syslog would output it on a custom file.
0
1050
posted 13 years ago by sadus
I'm originally a sys admin and i love "tail - f /var/log/*" ... so i created a similar function in PHP that will allow me to view in real time what classes/functions/files/lines of my code is being run...
The usage is really simple, just set a glo...
1
1417
posted 13 years ago by sadus
I’ve recently had to quickly parse an Apache log file, to get basic usage statistics for a site over a month and wanted the ability to quickly process any general logs and store them in a MySQL table, so I’ve made a small package class.log.
In...
2
1229
posted 14 years ago by dom111