The log tag has no wiki summary.
47
votes
10answers
13k views
How can I make the Python logging output to be colored?
Some time ago I saw a Mono application with colored output, probably because of it's log system, because all the messages were standardized.
Now, Python has the logging module, and it let you specify ...
37
votes
3answers
8k views
How to have git log show filenames like svn log -v
SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so:
jes5199$ svn log -v
------------------------------------------------------------------------
r1 | jes5199 ...
18
votes
3answers
10k views
heroku - how to see all the logs
I have a small app on heroku. Whenever I want to see the logs I go to the command line and do
heroku logs
That only shows me about 100 lines. Is there not a way to see complete logs for our ...
16
votes
2answers
311 views
De Bruijn-like sequence for `2^n - 1`: how is it constructed?
I'm looking at the entry Find the log base 2 of an N-bit integer in O(lg(N)) operations with multiply and lookup from Bit Twiddling hacks.
I can easily see how the second algorithm in that entry ...
16
votes
4answers
2k views
iPhone call log / history
I'm doing some research on the feasibility of an iPhone application, and can't find any indication in Apple's documentation that an iPhone app can read the call history of the phone, specifically the ...
14
votes
2answers
225 views
Parse Apache log in PHP using preg_match
I need to save data in a table (for reporting, stats etc...) so a user can search by time, user agent etc. I have a script that runs every day that reads the Apache Log and then insert it in the ...
14
votes
2answers
3k views
Experience using Boost.Log logging library?
I am considering starting to use the Boost.Log logging library. Is anyone using Boost.Log? Please share your experiences in this regard.
The other libraries I am considering are Apache log4cxx (it ...
14
votes
4answers
1k views
Setting git default flags on commands
I want to know if there is a way to set a flag by default for git command. Specifically, I want to set the --abbrev-commit flag so that when executing git log, I want to execute git log ...
12
votes
3answers
91 views
sort unique urls from log
I need to get the unique URLs from a web log and then sort them. I was thinking of using grep, uniq, sort command and output this to another file
I executed this command:
cat access.log | awk ...
12
votes
3answers
144 views
Apache grep big log file
I need to parse Apache log file to look for specific suspicious patterns (like SQL injections).
For example I'm looking for id='%20or%201=1;
I am using grep to check the log file for this pattern ...
12
votes
4answers
5k views
Which Git commit stats are easy to pull
Previously I have enjoyed TortoiseSvn's ability to generate simple commit stats for a given SVN repository. I wonder what is available in Git and am particularly interested in :
Number of commits ...
11
votes
4answers
236 views
Exponential form of tick marks for log plot in Mathematica
In an attempt to learn more Mathematica, I am trying to reproduce the tick marks on this log (log) plot:
This is as close as I can get:
LogLogPlot[Log[x!], {x, 1, 10^5}, PlotRange -> {{0, 10^5}, ...
11
votes
4answers
1k views
8
votes
2answers
277 views
How to save all console output to file in R?
I want to redirect all console text to a file. Here is what I tried:
> sink("test.log", type=c("output", "message"))
> a <- "a"
> a
> How come I do not see this in log
Error: ...
8
votes
3answers
1k views
What is boost log, how to get it and how to build it
So I heard good things about boost log. This claims its existence:
http://boost-log.sourceforge.net/libs/log/doc/html/index.html
This is the tutorial:
...
8
votes
2answers
7k views
How do I write outputs to the Log in Android?
I want to write some debugging output to the log to review it with logcat.
If I write something to System.out this is already displayed in logcat.
What is the clean way to write to the log and add ...
8
votes
1answer
2k views
objective-c logging best practices
I am writing my first objective-c daemon type process that works in the background. Everything it does needs to be logged properly.
I am fairly new to Apple stuff so I am not sure, what is the most ...
8
votes
6answers
2k views
MySQL indexes - how many are enough?
I'm trying to fine-tune my MySQL server so i check my settings, analyzing slow-query log, simplify my queries if possible.
Sometimes enough if i indexing correctly sometimes not. I've read somewhere ...
8
votes
3answers
3k views
What is the point of clog?
I've been wondering, what is the point of clog? As near as I can tell, clog is the same as cerr but with buffering so it is more efficient. Usually stderr is the same as stdout, so clog is the same as ...
7
votes
3answers
79 views
Number of loggers used
I'm working on a very large java application with log4j, and I was wondering if there is a way to extract in runtime the number of active loggers? Or what are the existing loggers in the application?
...
7
votes
1answer
139 views
git log since yesterday for working days only
For my daily standups I like to output my commits for a refresher of what I was working on.
I have the following alias:
standup = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s ...
7
votes
2answers
6k views
undefined reference to `__android_log_print'
What is wrong with my make file?
Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := foo
LOCAL_SRC_FILES := foo.c
LOCAL_EXPORT_LDLIBS := -llog
include ...
7
votes
2answers
1k views
Git how to save a preset git log --format
I really like the short git log format where I can see author, date and change description like this:
git log --pretty=format:"%h%x09%an%x09%ad%x09%s"
Which outputs:
fbc3503 mads Thu Dec 4 ...
7
votes
4answers
2k views
Is writing server log files to a database a good idea?
After reading an article about the subject from O'Reilly, I wanted to ask Stack Overflow for their thoughts on the matter.
7
votes
4answers
791 views
(Apache) Error log beautifier
Anyone knows of a good error log beautifier? (should be able to handle apache error logs).
Should be open source / free, preferably with a web interface
6
votes
3answers
204 views
Performing Historical Builds with Mercurial
Background
We use a central repository model to coordinate code submissions between all the developers on my team. Our automated nightly build system has a code submission cut-off of 3AM each ...
6
votes
1answer
186 views
Mysysgit “(END)” displays, how do I proceed?
While using mysysgit under Windows, I do not know how to regain control of the console windows after running git log in Git Bash. This seems simple yet I cannot find the key combination or command, so ...
6
votes
2answers
602 views
crash log in device
I need help to understand the crash log. The app works fine on my simulator but it crashes in device.
my simulator is run with:-iPhone Simulator 225, iPhone OS 4.1 (iPhone 4/8B5091b)
this is my ...
6
votes
1answer
3k views
How do I see the last 10 commits in reverse-chronoligical order with SVN?
Using the SVN commandline is there a way to show the last X number of commits along with commit messages in revere-chronological order?
6
votes
5answers
2k views
The shortest possible output from git log containing author and date
How can I show a git log output with (at least) this information:
* author
* commit date
* change
I want it compressed to one line per log entry. What's the shortest possible format for that?
...
5
votes
2answers
116 views
How to safely wrap `console.log`?
Suppose I want to include some calls to console.log for some legitimate production reason, say for something like a unit test harness. Obviously I would not want this to throw a premature exception if ...
5
votes
3answers
94 views
How to track a log file in TCL
Say there is a file log.txt and some kind of log is being appended to it permanently.
I want to track that file in the TCL environment.
I have tried this but it didn't worked.
set log [open log.txt ...
5
votes
2answers
91 views
svn log --xml invalid xml
I am using the svn log --xml response to look at the changes for a particular revision. But in case of an invalid revision or path, I want to just to get a blank but valid xml response. Is it possible ...
5
votes
4answers
238 views
How does console.log work?
First Example:
In the following example: http://jsfiddle.net/maniator/ScTAW/4/
I have this js:
var storage = (function () {
var store = [];
return {
"add": function (item) {
...
5
votes
2answers
345 views
Displaying minor logarithmic ticks in x-axis in R
I have a normal distribution plot and a histogram plot with x axis in log scale displaying 0, 10^0, 10^1 ... I want to include minor ticks between the major ones. Actually I was able to change the ...
5
votes
1answer
209 views
git log history simplification
Let's say I have the following history
D---E-------F
/ \ \
B---C---G---H---I---J
/ \
A-------K---------------L--M
git log --ancestry-path ...
5
votes
5answers
533 views
Bash script log file display to screen continuously
I am creating an application that writes to a log file, and I need to know how in Linux / Bash to continuously display the log file to the screen (updating the screen with every new line put into the ...
5
votes
2answers
107 views
When is Log4Net configured?
Given that you have
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log4Net.config", Watch = true)]
in your AssemblyInfo.cs file, when is Log4Net configured? Is it at the application start ...
5
votes
4answers
253 views
Can non static log be justified?
I'm the only maintainer on a codebase where logging is done using Apache commons logging.
All classes contains these two imports:
import org.apache.commons.logging.Log;
import ...
5
votes
4answers
454 views
Looking for a PHP class to parse an access.log file
Let's say I have an Apache Web server, with the default access.log file for a website. I'm looking for a PHP class to dissect it and give me info. Better than that, I'd love a PHP class that would ...
5
votes
2answers
420 views
C++ library for log parsing
Is there any C++ library specifically for log parsing (helping recognize multiline events)?
Like MergeLog for Apache logs or libcurl for web parsing?
5
votes
3answers
830 views
How to output git log with the first line only?
I am trying to customize the format for git log. I want all commits to be shown in one line. Each line should only show the first line of the commit message.
I found out that git log --pretty=short ...
5
votes
3answers
139 views
Is there a way of seeing if FTP was initiated by PHP?
I have had an attack on my web server where .html files were copied by FTP into a public html directory.
The FTP password was very strong.
I'm trying to determin whether PHP initiated the FTP ...
5
votes
3answers
2k views
Is there a “vim runtime log”?
Sometimes I try a customization/command in my vimrc. Everything seens to be correct, but it just doesn't work.
It's difficult to know what's happening when vim starts, and know which command failed ...
5
votes
3answers
2k views
How to log user actions with php and mysql?
I'm working on my CMS and I want it to log activities by users and other admins.
For example: when new user registers or admin makes a new news post -> update last activity.
I want to know what is ...
5
votes
3answers
5k views
Zend_Log in application.ini
is there any example how to setup an instance of zend log from application.ini? I have only found an example for logging to an file, but i want to log into an SQLITE database table?
Zend Log resource
...
4
votes
4answers
98 views
Why can't I create a txt file after having just deleted it?
My program creates a log file when it starts. The user has the option through settings to "clear the log" which calls a method to delete the log file.
//calls for a YesNo prompt to delete log ...
4
votes
2answers
72 views
viewing exact sql after parameter substitution C#
Is there a way to access the CommandText just after it gets executed?
I have the following code:
cmd = new OracleCommand(sql.ToString(), conn);
cmd.Parameters.Add(new OracleParameter("@parm", ...
4
votes
3answers
102 views
different values of std::floor function for arguments with same value but different types
Consider the following:
#include <iostream>
#include <cmath>
int main()
{
using std::cout;
using std::endl;
const long double be2 = std::log(2);
cout << std::log(8.0) / be2 ...
4
votes
2answers
312 views
nodejs console.log performance impact
If you're nodejs code is littered with console.log statements are you inviting performance issues? Is it worth debug/production toggling this on/off? I realize logging is important to prod in general ...