log

Where is the Xcode build results file ?

The Xcode "Build Results" tab shows the build log. Does anyone know where the actual log file (path in filesystem) is ? ...

Can I dynamically update the websphere 's log configuration in my own code?

In websphere admin console, we can change the log configuration , for example, the log file name, rolloverSize and log level and so on. After we saved the change in console, if we choose run time and chose write the file to xml. In this case, the log configuraiton change will be write to config file (such as: \config\cells\SENLI-XPNode01...

Learning from Linux log files

Hello, I was wondering about the utility of storing metadata (Abbreviation Expansion, Brief Message, links to online resources) associated with messages, in /var/log/syslog, /var/log/kern.log etc. For instance, for a message like ACPI: Processor [CPU1] (supports 8 throttling states) I would search online about CPU throttling, and sto...

How to view snort log files

Hi all. I have been working with snort-IDS. I have got some log files at /var/log/snort. The files are of type snort.log.xxxx. How do i view this file??? ...

[C++] operator << - how to detect last argument.

hi guys, I'm writting a log class in c++. This class is an singleton. I want to add logs in such a way: Log::GetInstance() << "Error: " << err_code << ", in class foo"; Ok, and inside a Log object, I want to save this whole line at the time when the last argument comes (", in class foo" in this example). How to detect the last one <...

Common Log format bytes - access log : Clarification

I thought I knew this, but am confused :( Need some clarification on it - In the CLF format (access log for httpd, tomcat, jboss, weblogic etc etc), what does the "bytes" field indicate ? Is it the bytes transferred from the server to the client or client to the server ? I believe its the former ; but in that case what happens when the ...

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 seems tedious to install but my team mates want something simple to get started) and Pantheios (the same problem since it works with extra fr...

Apache log analyzer that can handle URL parameters?

Hi, I have a web site that uses IBM Websphere Portal technology with an Apache web server inside. The content for the web site is stored in Oracle's UCM (the web content management system). When a user of the web site asks for a web page, a request like this is logged in the Apache log 10.32.3.111 - - [26/Jun/2010:11:16:09 +1000] "GE...

android: cant see log output

hello, i try to log some text using Log.v or Log.e but i cant see the text anywhere in the eclipse console. what am i missing? thanks! ...

log rotation for nginx on windows

I've found plenty of references on the web for rotating the nginx logs under linux.. just send the USR1 signal to the process. But... unix like signals don't exist on windows and I haven't been able to find any information on this. How can I accomplish the same thing with nginx on windows?? ...

Log issue of Solr on jboss

Hye Everybody I faced a problem when deploying solr on jboss. I wanted to log the messages for solr on jboss into a separate file like solr.log instead of appearing in console or server.log. So I tried by making changes in jboss-log4j.xml and added following configuration into it. <appender name="SOLR"  class="org.jboss.logging.append...

Android Listen for/Detect entry into the log

Is it possible to listen for entries to the log? Ie is there a broadcast intent for when a log entry is appended? ...

Select time intervals from log files using Bash

I need to extract some information from a log file using a shell script (bash). A line from the log file usually looks like this: 2009-10-02 15:41:13,796| some information Occasionally, such a line is followed by a few more lines giving details about the event. These additional lines do not have a specific format (in particular they d...

GWT Spring Integration - How to do AOP logging?

I have a GWT application where its RPC services are handled by a GWTHandler bean so that it can integrate with Spring smoothly. The application works. No problem with that. My issue is I can't do any AOP logging with Spring. I like to log user activities from the GWT interface using AOP. (I could of course do it the old way of calling ...

Understanding (symbolized) iOS crash log

Hi, This is a continuation to my previous attempt to resolve a pesky issue affecting a few instances of my app. The problem happens on a few iPads only, but as you know, these are the ones who take their time to leave a nice, thoughtful review :-/ Anywho, I finally got the crash log symbolized properly, and it is pointing to: Nonograms...

sscanf to read custom simple log format?

I wrote a simple log file for my website that is in the following format: TIME: "..." IP: "..." HOST: "..." UA: "..." And wanted to parse through it with sscanf as part of an exercise. My code was roughly like this, which was run on each line of the log: list($time, $ip, $host, $ua) = sscanf("TIME: %s IP: %s HOST: %s UA: %s", $line)...

Cron job not storing errors/results to log

I have a few Cron jobs running using 'wget' on my server, none of which are storing errors/results to a log file. Each of the command lines is identical except the specific controller and function called. I'm having trouble with one of the cron jobs, even though if I navigate to it in the browser it works without a hitch; the other two...

git log over restricts output when using --follow?

On the following server: gsl@aragorn:~/gitTest> uname -a Linux aragorn 2.6.31.12-0.2-default #1 SMP 2010-03-16 21:25:39 +0100 i686 i686 i386 GNU/Linux gsl@aragorn:~/gitTest> cat /etc/SuSE-release openSUSE 11.2 (i586) VERSION = 11.2 I use the following git: gsl@aragorn:~/gitTest> git --version git version 1.7.2.2 I get (with a ba...

Distributed log system

Hi, I need to store logs in a distributed file system. Let's say that I have many types of logs. Each log type is recorded in file. But this file can be huge, so it must be distributed across many nodes (with replication for data durability). These files must support append/get operations. Is there a distributed system that achieves ...

Jmeter doesn't work in other environment though it works local

Hi I had configure a .jmx to work with a thread group that does a simple http request. It works perfectly locally, but when I upload the .jmx to another server in amazon it doesn't work. Differences between local machine and ec2 server: local: is ubuntu when jmeter was installed as sudo apt-get install jmeter. And the version is...