Wait ms Timer Multiple returning inaccurate timer value

We are using the Wait Until Next ms Multiple Timer value to set the interval that data is recorded to a file. Because of Windows 2000 time indeterminancy, the Wait Until Next ms Multiple Timer value is written to file, along with the data point, and is used to calculate the derivative between two successive points. With a delay of 1 sec (1000 ms), the actual interval ranges from 1025 to 1035 ms. At several (random!) points during the acquisition, the difference between successive ms values is considerably smaller than 1000 ms (e.g. 15-25 ms). The following difference compensates for the previous error e.g. the difference will be 2025-2055ms. The data that we are recording is a smoothly continuou
s function and it appears that the sample is actually recorded at approximately 1000 plus ms. Thus it appears that the Wait Until Next ms Multiple waits the appropriate amount of time to record the data point, but outputs an erroneous ms timer value. We added a ms Timer function to the VI, which also experienced a similar glitch. This glitch does not correspond to the wraparound point; it occurs at approximately 60 to 130 sec intervals. We took the timing code only (no data acquisition, etc) and created a VI that wrote just the time values to a file. This is attached, along with the generated data in a spreadsheet. This consistently executed every 1000 ms but occasionally confused the intervals by 1-57 ms. The pattern was reversed from the previous problem by having a long interval and then a short interval. Any insight would be greatly appreciated!
Attachments:
CollectingSampleData.vi ‏47 KB
Create_XCoord.vi ‏25 KB
sampledata.xls ‏91 KB

Agree completely but why can't LV provide access to the windows multimedia
timer like LabWindows does? Provide me a timer, I can start/stop by changing
its properties and run that in a separate thread. Obviously if I have
another thread starving this timer thread, it won't help much but using
multi-media timer, I have seen very good results on a windows2000 machine.
Now win95/98 and derivatives are all other story.
vishi
"Al S" wrote in message
news:[email protected]..
> There are a couple of things going on that affect your results.
> 1. Windows is not a real-time operating system. As it multi-tasks,
> you have little control over when it gives time to your application.
> Loop times may vary depend
ing on what else Windows decides during that
> iteration. Especially when doing file I/O: if your disk is busy, a
> loop interation may take longer. Windows may also be doing some disk
> buffering, so occasionally a loop interation may take much longer than
> usual as the buffered data from multiple loop interations gets written
> to disk.
> 2. Wait Until Next ms Multiple doesn't garuntee equal loop times.
> With the millisecond multiple input set to 1000, if one iteration
> starts with the PC's clock at xx:xx:xx.001, Wait Until Next ms
> Multiple will wait 0.999 seconds. If an iteration starts with the
> PC's clock at xx:xx:xx.999, Wait Until Next ms Multiple will wait
> 0.001 seconds.
> 3. In your main loop, you check to see if the millisecond timer value
> * 60 equals the desired Length of Data Collection. If your loop
> doesn't execute every millisecond, you may miss the equals case and
> then your loop won't stop. You should check >= rather than just =.

Similar Messages

  • The Popup dialog Page needs two times to return the selected value[10.1.3]

    Hi All,
    I have problem in an JSF Application that uses the EMP and DEPT tables .
    the Application contains two pages
    page 1 : a calling page uses EmpView as ADF Table .
    page 2 : a popup List of Values (LOV) dialog page uses DeptView
    These cause the popup dialog page to return to the calling page and to set the selected value into the Deptno attribute .
    the calling page includes :deptno and dname columns as
    <af:column headerText="#{bindings.EmpView1.labels.Deptno}">
    <af:selectInputText value="#{row.Deptno}"
    required="#{bindings.EmpView1.attrDefs.Deptno.mandatory}"
    columns="#{bindings.EmpView1.attrHints.Deptno.displayWidth}"
    action="dialog:ChooseDept1" id="deptnoField"
    autoSubmit="true">
    <f:convertNumber groupingUsed="false"
    pattern="#{bindings.EmpView1.formats.Deptno}"/>
    </af:selectInputText>
    </af:column>
    <af:column headerText="#{bindings.EmpView1.labels.Dname}">
    <af:inputText value="#{row.Dname}" simple="true"
    required="#{bindings.EmpView1.attrDefs.Dname.mandatory}"
    columns="#{bindings.EmpView1.attrHints.Dname.displayWidth}"
    partialTriggers="deptnoField" autoSubmit="true"/>
    </af:column>
    and popup dialog page includes : Submit Button to return selected value to calling page :-
    <af:tableSelectOne text="Select and">
    <af:commandButton text="Submit">
    <af:returnActionListener value="#{row.Deptno}"/>
    <af:setActionListener from="#{row.Deptno}"
    to="#{bindings.Deptno.inputValue}"/>
    </af:commandButton>
    </af:tableSelectOne>
    the problem is
    I have to press ( two times ) the select button in the calling page to
    return the selected value into the Dname attribute .
    best regards,

    Hi,
    However, I am using the Jdeveloper 10.1.3.3, but still getting this error. I could not find any threads related to this problem and hence I wrote up here. Anyway I have also logged an SR #7179012.993 for the same with the testcase. I hope the issue will be resolved soon.
    Thanks,
    Neeraj

  • Why does getdate() function return same time value for multiple select statements executed sequentially

    When I run the following code
    set nocount on
    declare @i table(id int identity(1,1) primary key, sDate datetime)
    while((select count(*) from @i)<10000)
    begin
    insert into @i(sDate) select getdate()
    end
    select top 5 sDate, count(id) selectCalls
    from @i
    group by sDate
    order by count(id) desc
    I get the following results. 
    sDate                   selectCalls
    2014-07-30 14:50:27.510 406
    2014-07-30 14:50:27.527 274
    2014-07-30 14:50:27.540 219
    2014-07-30 14:50:27.557 195
    2014-07-30 14:50:27.573 170
    As you can see the select getdate() function returned same time up to the milisecon 406 time for the first date value.  This started happening when we moved our applications to a faster server with four processors.  Is this correct or am I
    going crazy?
    Please let me know
    Bilal

    Observe that adding 2 ms is accurate only with datetime2.  As noted above, datetime does not have ms resolution:
    set nocount on
    declare @d datetime, @i int, @d2 datetime2
    select @d = getdate(), @i = 0, @d2 = sysdatetime()
    while(@i<10)
    begin
    select @d2, @d, current_timestamp, getdate(), sysdatetime()
    select @d = dateadd(ms,2,@d), @i = @i+1, @d2=dateadd(ms,2,@d2)
    end
    2014-08-09 08:36:11.1700395 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1720395 2014-08-09 08:36:11.173 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1740395 2014-08-09 08:36:11.177 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1760395 2014-08-09 08:36:11.180 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1780395 2014-08-09 08:36:11.183 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1800395 2014-08-09 08:36:11.187 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    DATE/TIME functions:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Multiple return values (Bug-ID 4222792)

    I had exactly the same request for the same 3 reasons: strong type safety and code correctness verification at compile-time, code readability and ease of mantenance, performance.
    Here is what Sun replied to me:
    Autoboxing and varargs are provided as part of
    JSRs 14 and 201
    http://jcp.org/en/jsr/detail?id=14
    http://jcp.org/en/jsr/detail?id=201
    See also:
    http://forum.java.sun.com/forum.jsp?forum=316
    http://developer.java.sun.com/developer/earlyAccess/adding_generics/index.html
    Multiple return values is covered by Bug-ID 4222792
    Typically this is done by returning an array.
    http://developer.java.sun.com/developer/bugParade/bugs/4222792.html
    That's exactly the problem: we dynamically create instances of array objects that would better fit well within the operand stack without stressing the garbage collector with temporary Array object instances (and with their backing store: 2 separate allocations that need to be recycled when it is clearly a pollution that the operand stack would clean up more efficiently)
    If you would like to engage in a discussion with the Java Language developers, the Generics forum would be a better place:
    http://forum.java.sun.com/forum.jsp?forum=316
    I know that (my report was already refering to the JSR for language extension) Generics is not what I was refering to (even if a generic could handle multiple return values, it would still be an allocated Object
    instance to pack them, i.e. just less convenient than using a static class for type safety.
    The most common case of multiple return values involve values that have known static datatypes and that should be checked with strong typesafety.
    The simple case that involves returning two ints then will require at least two object instances and will not solve the garbage collection overhead.
    Using a array of variable objects is exactly similar, except that it requires two instances for the components and one instance for the generic array container. Using extra method parameters with Integer, Byte, ... boxing objects is more efficient, but for now the only practical solution (which causes the least pollution in the VM allocator and garbage collector) is to use a custom class to store the return values in a single instance.
    This is not natural, and needlessly complexifies many interfaces.
    So to avoid this pollution, some solutions are used such as packing two ints into a long and returning a long, depacking the long after return (not quite clean but still much faster at run-time for methods that need to be used with high frequencies within the application. In some case, the only way to cut down the overhead is to inline methods within the caller code, and this does not help code maintenance by splitting the implementation into small methods (something that C++ can do very easily, both because it supports native types parameters by reference, and because it also supports inline methods).
    Finally, suppose we don't want to use tricky code, difficult to maintain, then we'll have to use boxing Object types to allow passing arguments by reference. Shamely boxed native types cannot be allocated on the operand stack as local variables, so we need to instanciate these local variables before call, and we loose the capacity to track the cases where these local variables are not really initialized by an effective call to the method that will assign them. This does not help debugging, and is against the concept of a strongly typed language like Java should be:
    Java makes lots of efforts to track uninitialized variables, but has no way to determine if an already instanciated Object instance refered in a local variable has effectively received an effective assignment because only the instanciation is kept. A typical code will then need to be written like this:
    Integer a = null;
    Integer b = null;
    if (some condition) {
    //call.method(a, b, 0, 1, "dummy input arg");
    // the method is supposed to have assigned a value to a and b,
    // but can't if a and b have not been instanciated, so we perform:
    call.method(a = new Integer(), b = new Integer(), 0, 1, "dummy input
    arg");
    // we must suppose that the method has modified (not initialized!)
    the value
    // of a and b instances.
    now.use(a.value(), b.value())
    // are we sure here that a and b have received a value????
    // the code may be detected at run-time (a null exception)
    // or completely undetected (the method() above was called but it
    // forgot to assign a value to its referenced objects a and b, in which
    // case we are calling in fact: now.use(0, 0); with the default values
    // or a and b, assigned when they were instanciated)
    Very tricky... Hard to debug. It would be much simpler if we just used:
    int a;
    int b;
    if (some condition) {
    (a, b) = call.method(0, 1, "dummy input arg");
    now.use(a, b);
    The compiler would immediately detect the case where a and b are in fact not always initialized (possible use bere initialization), and the first invoked call.method() would not have to check if its arguments are not null, it would not compile if it forgets to return two values in some code path...
    There's no need to provide extra boxing objects in the source as well as at run-time, and there's no stress added to the VM allocator or garbage collector simply because return values are only allocated on the perand stack by the caller, directly instanciated within the callee which MUST (checked at compile-time) create such instances by using the return statement to instanciate them, and the caller now just needs to use directly the variables which were referenced before call (here a and b). Clean and mean. And it allows strong typechecking as well (so this is a real help for programmers.
    Note that the signature of the method() above is:
    class call {
    (int, int) method(int, int, String) { ... }
    id est:
    class "call", member name "method", member type "(IILjava.lang.string;)II"
    This last signature means that the method can only be called by returning the value into a pair of variables of type int, or using the return value as a pair of actual arguments for another method call such as:
    call.method(call.method("dummy input arg"), "other dummy input arg")
    This is strongly typed and convenient to write and debug and very efficient at run-time...

    Can anyone give me some real-world examples where
    multiple return values aren't better captured in a
    class that logically groups those values? I can of
    course give hundreds of examples for why it's better
    to capture method arguments as multiple values instead
    of as one "logical object", but whenever I've hankered
    for multiple return values, I end up rethinking my
    strategy and rewriting my code to be better Object
    Oriented.I'd personally say you're usually right. There's almost always a O-O way of avoiding the situation.
    Sometimes though, you really do just want to return "two ints" from a function. There's no logical object you can think of to put them in. So you end up polluting the namespace:
    public class MyUsefulClass {
    public TwoInts calculateSomething(int a, int b, int c) {
    public static class TwoInts {
        //now, do I use two public int fields here, making it
        //in essence a struct?
       //or do I make my two ints private & final, which
       //requires a constructor & two getters?
      //and while I'm at it, is it worth implementing
      //equals(), how about hashCode()? clone()?
      //readResolve() ?
    }The answer to most of the questions for something as simple as "TwoInts" is usually "no: its not worth implementing those methods", but I still have to think about them.
    More to the point, the TwoInts class looks so ugly polluting the top level namespace like that, MyUsefulClass.TwoInts is public, that I don't think I've ever actually created that class. I always find some way to avoid it, even if the workaround is just as ugly.
    For myself, I'd like to see some simple pass-by-value "Tuple" type. My fear is it'd be abused as a way for lazy programmers to avoid creating objects when they should have a logical type for readability & maintainability.
    Anyone who has maintained code where someone has passed in all their arguments as (mutable!) Maps, Collections and/or Arrays and "returned" values by mutating those structures knows what a nightmare it can be. Which I suppose is an argument that cuts both ways: on the one hand you can say: "why add Tuples which would be another easy thing to abuse", on the other: "why not add Tuples, given Arrays and the Collections framework already allow bad programmers to produce unmainable mush. One more feature isn't going to make a difference either way".
    Ho hum.

  • CUPS: Printer always waits for more data, and finally times out.

    I apologise if this should be categorised as" system administration" rather than "installation". The reason why I chose this category was that the error happened right after installing and setting up cups, so it should not have to do with fine-tuning or be the result of a particularly specific situation.
    I have had a novel kind of problem with printing since I first installed Arch Linux:
    Whenever I print - regardless of application -, my OKI 431 printer will always wait for more data after having completed the print job (as shown in its small display, where it keeps saying 'DATA' even after the last printed page has come out). After 25 to 30 seconds of such waiting, it will print out two pages, the first one empty, the second one saying:
    ERROR:
    timeout
    OFFENDING COMMAND:
    timeout
    STACK:
    The printer display then goes back to saying 'ONLINE'. If I print several documents WITHIN this 25 to 30 sec delay, i.e. in fast succession, I only get the two pages once, i.e. after the last of these jobs has been printed.
    What seems to be related to that is the status message on the "Printers" page of CUPS' Web interface: It says
    Idle - "Sending data to printer."
    all the time, even though I am not printing anything. (And this was the same before the update.)
    Printing is otherwise completely fine - the one practical problem is I have an ever-growing pile of empty pages mixed with pages containing the above error message next to my printer, i.e. two extra pages after each printout. (The one workaround I have found so far is quickly switching off the printer after within the 25 - 30 secs time window.) I have tried to google this problem with various search term combinations, but have not been able to find pages specific to this problem anywhere.
    What I have tried out was wiping the /etc/cups directory, updating cups, adding the printer again using lpadmin, and setting it as the default printer with lpoptions (both as explained in the Arch Wiki page). This has not changed anything relevant about the behaviour.
    (The one effect this has had is that pointing some browsers (Opera, Dillo) to localhost:631 now gets a "Bad request" response from CUPS, but on most browsers (Mozilla, Qupzilla, Midori, Google Chrome, Lynx) it gets the normal Web interface. But this is probably not related to the problem.)
    I will try to give some basic context:
    > uname -a
    Linux bertrandrussell 3.12.9-2-ARCH #1 SMP PREEMPT Fri Jan 31 10:22:54 CET 2014 x86_64 GNU/Linux
    > pacman -Qi cups
    Version : 1.7.1-3
    > cat /etc/cups/printers.conf
    # Printer configuration file for CUPS v1.7.1
    # Written by cupsd on 2014-02-16 12:24
    # DO NOT EDIT THIS FILE WHEN CUPSD IS RUNNING
    <Printer OKI>
    UUID urn:uuid:6414e199-9c1c-3330-4b66-5311b2bff8e8
    Info OKI
    MakeModel OKI DATA CORP B431(PS)
    DeviceURI usb://OKI%20DATA%20CORP/B431?serial=AK17008654
    State Idle
    StateTime 1392549811
    Type 8425556
    Accepting Yes
    Shared Yes
    JobSheets none none
    QuotaPeriod 0
    PageLimit 0
    KLimit 0
    OpPolicy default
    ErrorPolicy abort-job
    </Printer>
    Can anybody help me on where to start looking?
    Thank you very much for any help!
    Florian

    It seems I have lost my first error_log, but I have produced a fresh one. It contains precisely what was logged since the reboot (albeit not the marker of when exactly I printed the document):
    I'll try the wrapper - here goes:
    I [22/Feb/2014:18:13:07 +0100] Listening to [v1.::1]:631 (IPv6)
    I [22/Feb/2014:18:13:07 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [22/Feb/2014:18:13:07 +0100] Listening to /run/cups/cups.sock (Domain)
    I [22/Feb/2014:18:13:07 +0100] Remote access is disabled.
    D [22/Feb/2014:18:13:07 +0100] Added auto ServerAlias bertrandrussell
    I [22/Feb/2014:18:13:07 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [22/Feb/2014:18:13:07 +0100] Repairing ownership of "/run/cups"
    D [22/Feb/2014:18:13:07 +0100] Creating missing directory "/run/cups/certs"
    D [22/Feb/2014:18:13:07 +0100] Repairing ownership of "/run/cups/certs"
    D [22/Feb/2014:18:13:07 +0100] Repairing access permissions of "/run/cups/certs"
    I [22/Feb/2014:18:13:07 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [22/Feb/2014:18:13:07 +0100] Configured for up to 100 clients.
    I [22/Feb/2014:18:13:07 +0100] Allowing up to 100 client connections per host.
    I [22/Feb/2014:18:13:07 +0100] Using policy "default" as the default.
    I [22/Feb/2014:18:13:07 +0100] Full reload is required.
    I [22/Feb/2014:18:13:07 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 39 types, 52 filters...
    D [22/Feb/2014:18:13:07 +0100] Loading printer OKI...
    D [22/Feb/2014:18:13:07 +0100] load_ppd: Loading /var/cache/cups/OKI.data...
    D [22/Feb/2014:18:13:07 +0100] cupsdRegisterPrinter(p=0x7fa99aa6d130(OKI))
    I [22/Feb/2014:18:13:07 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    D [22/Feb/2014:18:13:07 +0100] [Job 1] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 2] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 3] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 4] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 5] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 6] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 7] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 8] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 9] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 10] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 11] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 12] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 13] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 14] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 15] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 16] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 17] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 18] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 19] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 20] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 21] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 22] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 23] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 24] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 25] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 26] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 27] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 28] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 29] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 30] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 31] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 32] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 33] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 34] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 35] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 36] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 37] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 38] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 39] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 40] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 41] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 42] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 43] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 44] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 45] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 46] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 47] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 48] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 49] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 50] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 51] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 52] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 53] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 54] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 55] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 56] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 57] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 58] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 59] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 60] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 61] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 62] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 63] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 64] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 65] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 66] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 67] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 68] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 69] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 70] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 71] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 72] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 73] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 74] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 75] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 76] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 77] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 78] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 79] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 80] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 81] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 82] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 83] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 84] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 85] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 86] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 87] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 88] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 89] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 90] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 91] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 92] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 93] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 94] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 95] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 96] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 97] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 98] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 99] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 100] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 101] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 102] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 103] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 104] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 105] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 106] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 107] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 108] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 109] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 110] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 111] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 112] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 113] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 114] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 115] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 116] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 117] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 118] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 119] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 120] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 121] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 122] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 123] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 124] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 125] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 126] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 127] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 128] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 129] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 130] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 131] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 132] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 133] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 134] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 135] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 136] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 137] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 138] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 139] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 140] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 141] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 142] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 143] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 144] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 145] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 146] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 147] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 148] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 149] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 150] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 151] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 152] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 153] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 154] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 155] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 156] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 157] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 158] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 159] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 160] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 161] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 162] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 163] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 164] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 165] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 166] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 167] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 168] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 169] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 170] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 171] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 172] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 173] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 174] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 175] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 176] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 177] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 178] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 179] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 180] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 181] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 182] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 183] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 184] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 185] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 186] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 187] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 188] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 189] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 190] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 191] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 192] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 193] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 194] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 195] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 196] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 197] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 198] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 199] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 200] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 201] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 202] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 203] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 204] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 205] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 206] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 207] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 208] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 209] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 210] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 211] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 212] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 213] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 214] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 215] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 216] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 217] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 218] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 219] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 220] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 221] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 222] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 223] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 224] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 225] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 226] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 227] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 228] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 229] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 230] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 231] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 232] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 233] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 234] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 235] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 236] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 237] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 238] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 239] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 240] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 241] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 242] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 243] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 244] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 245] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 246] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 247] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 248] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 249] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 250] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 251] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 252] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 253] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 254] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 255] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 256] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 257] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 258] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 259] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 260] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 261] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 262] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 263] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 264] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 265] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 266] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 267] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 268] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 269] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 270] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 271] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 272] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 273] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 274] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 275] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 276] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 277] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 278] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 279] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 280] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 281] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 282] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 283] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 284] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 285] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 286] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 287] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 288] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 289] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 290] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 291] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 292] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 293] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 294] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 295] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 296] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 297] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 298] Loading from cache...
    D [22/Feb/2014:18:13:07 +0100] [Job 299] Loading from cache...
    I [22/Feb/2014:18:13:07 +0100] Full reload complete.
    D [22/Feb/2014:18:13:07 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [22/Feb/2014:18:13:07 +0100] Cleaning out old files in "/var/spool/cups/tmp".
    D [22/Feb/2014:18:13:07 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [22/Feb/2014:18:13:07 +0100] Cleaning out old files in "/var/cache/cups".
    D [22/Feb/2014:18:13:07 +0100] systemd_checkin: Matched existing listener /run/cups/cups.sock with fd 3...
    D [22/Feb/2014:18:13:07 +0100] systemd_checkin: Adding new listener [v1.::] with fd 4...
    D [22/Feb/2014:18:13:07 +0100] Calling FindDeviceById(cups-OKI)
    D [22/Feb/2014:18:13:08 +0100] FindDeviceById failed: org.freedesktop.ColorManager.NotFound:device id 'cups-OKI' does not exist
    D [22/Feb/2014:18:13:08 +0100] Using profile ID "OKI-Gray..".
    D [22/Feb/2014:18:13:08 +0100] Calling CreateProfile(OKI-Gray..,temp)
    D [22/Feb/2014:18:13:09 +0100] Created profile "/org/freedesktop/ColorManager/profiles/OKI_Gray__".
    I [22/Feb/2014:18:13:09 +0100] Registering ICC color profiles for "OKI".
    D [22/Feb/2014:18:13:09 +0100] Calling CreateDevice(cups-OKI,temp)
    D [22/Feb/2014:18:13:09 +0100] Created device "/org/freedesktop/ColorManager/devices/cups_OKI".
    D [22/Feb/2014:18:13:09 +0100] Calling /org/freedesktop/ColorManager/devices/cups_OKI:AddProfile(/org/freedesktop/ColorManager/profiles/OKI_Gray__) [soft]
    E [22/Feb/2014:18:13:09 +0100] Unable to bind socket for address [v1.::1]:631 - Address already in use.
    E [22/Feb/2014:18:13:09 +0100] Unable to bind socket for address 127.0.0.1:631 - Address already in use.
    I [22/Feb/2014:18:13:09 +0100] Listening to /run/cups/cups.sock:631 on fd 3...
    I [22/Feb/2014:18:13:09 +0100] Listening to [v1.::]:631 on fd 4...
    I [22/Feb/2014:18:13:09 +0100] Resuming new connection processing...
    D [22/Feb/2014:18:13:09 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:13:09 +0100] Discarding unused server-started event...
    D [22/Feb/2014:18:13:10 +0100] Report: clients=0
    D [22/Feb/2014:18:13:10 +0100] Report: jobs=299
    D [22/Feb/2014:18:13:10 +0100] Report: jobs-active=0
    D [22/Feb/2014:18:13:10 +0100] Report: printers=1
    D [22/Feb/2014:18:13:10 +0100] Report: stringpool-string-count=1578
    D [22/Feb/2014:18:13:10 +0100] Report: stringpool-alloc-bytes=8880
    D [22/Feb/2014:18:13:10 +0100] Report: stringpool-total-bytes=27352
    D [22/Feb/2014:18:13:56 +0100] [Client 13] Accepted from localhost:631 (IPv6)
    D [22/Feb/2014:18:13:56 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:13:59 +0100] [Client 13] GET / HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] GET /cups.css HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] GET /images/left.gif HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [22/Feb/2014:18:13:59 +0100] [Client 14] Waiting for request.
    D [22/Feb/2014:18:13:59 +0100] [Client 15] Accepted from localhost:631 (IPv6)
    D [22/Feb/2014:18:13:59 +0100] [Client 15] Waiting for request.
    D [22/Feb/2014:18:13:59 +0100] [Client 14] GET /images/right.gif HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 14] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 16] Accepted from localhost:631 (IPv6)
    D [22/Feb/2014:18:13:59 +0100] [Client 16] Waiting for request.
    D [22/Feb/2014:18:13:59 +0100] [Client 15] GET /images/cups-icon.png HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 15] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 16] GET /images/sel.gif HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 16] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] GET /images/unsel.gif HTTP/1.1
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:13:59 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:13:59 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [Client 14] GET /printers/ HTTP/1.1
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:02 +0100] [Client 14] No authentication data provided.
    D [22/Feb/2014:18:14:02 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@bertrandrussell"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[13] = "USER=root"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[18] = "LANG=en_US.UTF8"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[25] = "SCRIPT_NAME=/printers/"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/printers/"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[27] = "SERVER_PROTOCOL=HTTP/1.1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[28] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux x86_64; rv:27.0) Gecko/20100101 Firefox/27.0"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[29] = "HTTP_REFERER=http://localhost:631/"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[30] = "REQUEST_METHOD=GET"
    D [22/Feb/2014:18:14:02 +0100] [CGI] envp[31] = "QUERY_STRING="
    D [22/Feb/2014:18:14:02 +0100] [CGI] Started /usr/lib/cups/cgi-bin/printers.cgi (PID 668)
    I [22/Feb/2014:18:14:02 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=668)
    D [22/Feb/2014:18:14:02 +0100] [Client 14] file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [CGI] org.cups.sid cookie not found, initializing!
    D [22/Feb/2014:18:14:02 +0100] [CGI] org.cups.sid cookie is "4d43abea28d1837cbb1175a07cd5bb45"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: SECTION="printers"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Accepted from localhost (Domain)
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Waiting for request.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] POST / HTTP/1.1
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [Client 18] No authentication data provided.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] 2.0 CUPS-Get-Default 1
    D [22/Feb/2014:18:14:02 +0100] CUPS-Get-Default
    D [22/Feb/2014:18:14:02 +0100] CUPS-Get-Default client-error-not-found: No default printer.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Returning IPP client-error-not-found for CUPS-Get-Default (no URI) from localhost
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Content-Length: 113
    D [22/Feb/2014:18:14:02 +0100] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=113, response=0x7fa99aaad580(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:02 +0100] [Client 18] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Waiting for request.
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [CGI] show_all_printers(http=0x7f1162e63260, user="(null)")
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: TITLE="Printers"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.1"
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] Script header: Set-Cookie: org.cups.sid=4d43abea28d1837cbb1175a07cd5bb45; path=/;
    D [22/Feb/2014:18:14:02 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [22/Feb/2014:18:14:02 +0100] Script header:
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] POST / HTTP/1.1
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [Client 18] No authentication data provided.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] 2.0 CUPS-Get-Printers 2
    D [22/Feb/2014:18:14:02 +0100] CUPS-Get-Printers
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Content-Length: 292
    D [22/Feb/2014:18:14:02 +0100] [Client 18] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=292, response=0x7fa99aadf780(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:02 +0100] [Client 18] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Waiting for request.
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: TOTAL="1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.1"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_state[0]="3"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_state_message[0]=""
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: admin_uri[0]="/admin/"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_uri_supported[0]="/printers/OKI"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_name[0]="OKI"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_location[0]=""
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_info[0]="OKI"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetArray: printer_make_and_model[0]="OKI DATA CORP B431(PS)"
    D [22/Feb/2014:18:14:02 +0100] [CGI] cgiSetVariable: THISURL="/printers/"
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] [Client 18] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:02 +0100] [Client 18] Closing connection.
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] CGI data ready to be sent.
    D [22/Feb/2014:18:14:02 +0100] PID 668 (/usr/lib/cups/cgi-bin/printers.cgi) exited with no errors.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=668, file=17
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for CGI data.
    D [22/Feb/2014:18:14:02 +0100] [Client 14] Waiting for request.
    D [22/Feb/2014:18:14:02 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Accepted from localhost (Domain)
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Waiting for request.
    D [22/Feb/2014:18:14:21 +0100] Report: clients=5
    D [22/Feb/2014:18:14:21 +0100] Report: jobs=299
    D [22/Feb/2014:18:14:21 +0100] Report: jobs-active=0
    D [22/Feb/2014:18:14:21 +0100] Report: printers=1
    D [22/Feb/2014:18:14:21 +0100] Report: stringpool-string-count=1582
    D [22/Feb/2014:18:14:21 +0100] Report: stringpool-alloc-bytes=8904
    D [22/Feb/2014:18:14:21 +0100] Report: stringpool-total-bytes=27416
    D [22/Feb/2014:18:14:21 +0100] [Client 17] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Closing connection.
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Accepted from localhost (Domain)
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Waiting for request.
    D [22/Feb/2014:18:14:21 +0100] [Client 17] POST / HTTP/1.1
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] No authentication data provided.
    D [22/Feb/2014:18:14:21 +0100] [Client 17] 2.0 CUPS-Get-Printers 1
    D [22/Feb/2014:18:14:21 +0100] CUPS-Get-Printers
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Content-Length: 1073
    D [22/Feb/2014:18:14:21 +0100] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1073, response=0x7fa99aaad7c0(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:21 +0100] [Client 17] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Waiting for request.
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] POST / HTTP/1.1
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] No authentication data provided.
    D [22/Feb/2014:18:14:21 +0100] [Client 17] 2.0 CUPS-Get-Default 2
    D [22/Feb/2014:18:14:21 +0100] CUPS-Get-Default
    D [22/Feb/2014:18:14:21 +0100] CUPS-Get-Default client-error-not-found: No default printer.
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Returning IPP client-error-not-found for CUPS-Get-Default (no URI) from localhost
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Content-Length: 113
    D [22/Feb/2014:18:14:21 +0100] [Client 17] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=113, response=0x7fa99aae73c0(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:21 +0100] [Client 17] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Waiting for request.
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:21 +0100] [Client 17] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:21 +0100] [Client 17] Closing connection.
    D [22/Feb/2014:18:14:21 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:30 +0100] [Client 16] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:30 +0100] [Client 16] Closing connection.
    D [22/Feb/2014:18:14:30 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:30 +0100] [Client 15] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:30 +0100] [Client 15] Closing connection.
    D [22/Feb/2014:18:14:30 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:30 +0100] [Client 13] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:30 +0100] [Client 13] Closing connection.
    D [22/Feb/2014:18:14:30 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Accepted from localhost (Domain)
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:32 +0100] [Client 13] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Closing connection.
    D [22/Feb/2014:18:14:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Accepted from localhost (Domain)
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:32 +0100] [Client 13] POST / HTTP/1.1
    D [22/Feb/2014:18:14:32 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:32 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:14:32 +0100] [Client 13] 2.0 CUPS-Get-Printers 3
    D [22/Feb/2014:18:14:32 +0100] CUPS-Get-Printers
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Content-Length: 1073
    D [22/Feb/2014:18:14:32 +0100] [Client 13] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1073, response=0x7fa99aaad750(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:32 +0100] [Client 13] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:32 +0100] [Client 13] POST / HTTP/1.1
    D [22/Feb/2014:18:14:32 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:32 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:14:32 +0100] [Client 13] 2.0 CUPS-Get-Default 4
    D [22/Feb/2014:18:14:32 +0100] CUPS-Get-Default
    D [22/Feb/2014:18:14:32 +0100] CUPS-Get-Default client-error-not-found: No default printer.
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Returning IPP client-error-not-found for CUPS-Get-Default (no URI) from localhost
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Content-Length: 113
    D [22/Feb/2014:18:14:32 +0100] [Client 13] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=113, response=0x7fa99aaad7a0(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:32 +0100] [Client 13] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:32 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [22/Feb/2014:18:14:33 +0100] [Client 14] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:14:33 +0100] [Client 14] Closing connection.
    D [22/Feb/2014:18:14:33 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:14:44 +0100] [Client 13] POST /printers/OKI HTTP/1.1
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:14:44 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:14:44 +0100] [Client 13] 2.0 Create-Job 5
    D [22/Feb/2014:18:14:44 +0100] Create-Job ipp://localhost:631/printers/OKI
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients"
    D [22/Feb/2014:18:14:44 +0100] add_job: requesting-user-name="lehrer"
    D [22/Feb/2014:18:14:44 +0100] Adding default job-sheets values "none,none"...
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Adding start banner page "none".
    D [22/Feb/2014:18:14:44 +0100] Discarding unused job-created event...
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Queued on "OKI" by "lehrer".
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Returning IPP successful-ok for Create-Job (ipp://localhost:631/printers/OKI) from localhost
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Content-Length: 183
    D [22/Feb/2014:18:14:44 +0100] [Client 13] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=183, response=0x7fa99aaad890(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:44 +0100] [Client 13] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [22/Feb/2014:18:14:44 +0100] [Client 13] POST /printers/OKI HTTP/1.1
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [22/Feb/2014:18:14:44 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:14:44 +0100] [Client 13] 2.0 Send-Document 6
    D [22/Feb/2014:18:14:44 +0100] Send-Document ipp://localhost:631/printers/OKI
    D [22/Feb/2014:18:14:44 +0100] cupsdIsAuthorized: requesting-user-name="lehrer"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Auto-typing file...
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Request file type is application/pdf.
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    I [22/Feb/2014:18:14:44 +0100] [Job 300] File of type application/pdf queued by "lehrer".
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Adding end banner page "none".
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] time-at-processing=1393089284
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [22/Feb/2014:18:14:44 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:14:44 +0100] [Job 300] 3 filters for job:
    D [22/Feb/2014:18:14:44 +0100] [Job 300] pdftopdf (application/pdf to application/vnd.cups-pdf, cost 66)
    D [22/Feb/2014:18:14:44 +0100] [Job 300] pdftops (application/vnd.cups-pdf to application/vnd.cups-postscript, cost 100)
    D [22/Feb/2014:18:14:44 +0100] [Job 300] - (application/vnd.cups-postscript to printer/OKI, cost 0)
    D [22/Feb/2014:18:14:44 +0100] [Job 300] job-sheets=none,none
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[0]="OKI"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[1]="300"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[2]="lehrer"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[3]="32_noun_clauses"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[4]="1"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[5]="Duplex=None InputSlot=Upper PageSize=A4 job-uuid=urn:uuid:f6fd7095-afa2-3a84-4db2-7a65f497728a job-originating-host-name=localhost time-at-creation=1393089284 time-at-processing=1393089284"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] argv[6]="/var/spool/cups/d00300-001"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[0]="CUPS_CACHEDIR=/var/cache/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[1]="CUPS_DATADIR=/usr/share/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[4]="CUPS_REQUESTROOT=/var/spool/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[5]="CUPS_SERVERBIN=/usr/lib/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[6]="CUPS_SERVERROOT=/etc/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[7]="CUPS_STATEDIR=/run/cups"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[8]="HOME=/var/spool/cups/tmp"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[10]="SERVER_ADMIN=root@bertrandrussell"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[11]="SOFTWARE=CUPS/1.7.1"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[12]="TMPDIR=/var/spool/cups/tmp"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[13]="USER=root"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[14]="CUPS_MAX_MESSAGE=2047"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[15]="CUPS_SERVER=/run/cups/cups.sock"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[16]="CUPS_ENCRYPTION=IfRequested"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[17]="IPP_PORT=631"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[18]="CHARSET=utf-8"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[19]="LANG=de_DE.UTF-8"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[20]="PPD=/etc/cups/ppd/OKI.ppd"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[21]="RIP_MAX_CACHE=128m"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[22]="CONTENT_TYPE=application/pdf"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[23]="DEVICE_URI=usb://OKI%20DATA%20CORP/B431?serial=AK17008654"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[24]="PRINTER_INFO=OKI"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[25]="PRINTER_LOCATION="
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[26]="PRINTER=OKI"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[27]="PRINTER_STATE_REASONS=none"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[28]="CUPS_FILETYPE=document"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[29]="FINAL_CONTENT_TYPE=printer/OKI"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] envp[30]="AUTH_I****"
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Started filter /usr/lib/cups/filter/pdftopdf (PID 703)
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Started filter /usr/lib/cups/filter/pdftops (PID 704)
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Started backend /usr/lib/cups/backend/usb (PID 705)
    D [22/Feb/2014:18:14:44 +0100] Discarding unused job-state-changed event...
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Returning IPP successful-ok for Send-Document (ipp://localhost:631/printers/OKI) from localhost
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Content-Length: 175
    D [22/Feb/2014:18:14:44 +0100] [Client 13] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=175, response=0x7fa99aae6ec0(IPP_IDLE), pipe_pid=0, file=-1
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [22/Feb/2014:18:14:44 +0100] [Client 13] bytes=0, http_state=0, data_remaining=0
    D [22/Feb/2014:18:14:44 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients and dirty files"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] pdftops - copying to temp print file "/var/spool/cups/tmp/002c0530d3451"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Loading USB quirks from "/usr/share/cups/usb".
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Loaded 67 quirks.
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Printing on printer with URI: usb://OKI%20DATA%20CORP/B431?serial=AK17008654
    D [22/Feb/2014:18:14:44 +0100] [Job 300] libusb_get_device_list=12
    I [22/Feb/2014:18:14:44 +0100] [Job 300] Waiting for printer to become available.
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:14:44 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:14:44 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Set job-printer-state-message to "Waiting for printer to become available.", current level=INFO
    D [22/Feb/2014:18:14:44 +0100] Discarding unused job-progress event...
    D [22/Feb/2014:18:14:44 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:14:44 +0100] [Job 300] PID 703 (/usr/lib/cups/filter/pdftopdf) exited with no errors.
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Printer make and model: Oki B431
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Running command line for pstops: pstops 300 lehrer 32_noun_clauses 1 'Duplex=None InputSlot=Upper PageSize=A4 job-uuid=urn:uuid:f6fd7095-afa2-3a84-4db2-7a65f497728a job-originating-host-name=localhost time-at-creation=1393089284 time-at-processing=1393089284'
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Using image rendering resolution 600 dpi
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Running command line for gs: gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=ps2write -sOUTPUTFILE=%stdout -dLanguageLevel=3 -r600 -dCompressFonts=false -dNoT3CCITT -dNOINTERPOLATE -c 'save pop' -f /var/spool/cups/tmp/002c0530d3451
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Started filter gs (PID 707)
    D [22/Feb/2014:18:14:44 +0100] [Job 300] Started filter pstops (PID 708)
    D [22/Feb/2014:18:14:45 +0100] [Job 300] Page = 595x842; 13,13 to 582,829
    D [22/Feb/2014:18:14:45 +0100] [Job 300] slow_collate=0, slow_duplex=0, slow_order=0
    D [22/Feb/2014:18:14:45 +0100] [Job 300] Before copy_comments - %!PS-Adobe-3.0
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %!PS-Adobe-3.0
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%BoundingBox: 0 0 595 842
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%HiResBoundingBox: 0 0 595.00 842.00
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%Creator: GPL Ghostscript 910 (ps2write)
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%LanguageLevel: 2
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%CreationDate: D:20140222181445+01'00'
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%Pages: 1
    D [22/Feb/2014:18:14:45 +0100] [Job 300] %%EndComments
    D [22/Feb/2014:18:14:45 +0100] [Job 300] Before copy_prolog - %%BeginProlog
    D [22/Feb/2014:18:14:49 +0100] [Job 300] libusb_get_device_list=12
    I [22/Feb/2014:18:14:49 +0100] [Job 300] Waiting for printer to become available.
    D [22/Feb/2014:18:14:54 +0100] [Job 300] libusb_get_device_list=12
    I [22/Feb/2014:18:14:54 +0100] [Job 300] Waiting for printer to become available.
    D [22/Feb/2014:18:14:59 +0100] [Job 300] libusb_get_device_list=12
    I [22/Feb/2014:18:14:59 +0100] [Job 300] Waiting for printer to become available.
    D [22/Feb/2014:18:15:04 +0100] [Job 300] libusb_get_device_list=12
    I [22/Feb/2014:18:15:04 +0100] [Job 300] Waiting for printer to become available.
    D [22/Feb/2014:18:15:09 +0100] [Job 300] libusb_get_device_list=13
    D [22/Feb/2014:18:15:09 +0100] [Job 300] STATE: +connecting-to-device
    D [22/Feb/2014:18:15:09 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:15:09 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:09 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] STATE: -connecting-to-device
    D [22/Feb/2014:18:15:09 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:15:09 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Dirty files"
    D [22/Feb/2014:18:15:09 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Device protocol: 2
    I [22/Feb/2014:18:15:09 +0100] [Job 300] Sending data to printer.
    D [22/Feb/2014:18:15:09 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:15:09 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Set job-printer-state-message to "Sending data to printer.", current level=INFO
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:09 +0100] Discarding unused job-progress event...
    D [22/Feb/2014:18:15:09 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PID 707 (gs) exited with no errors.
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Before copy_setup - %%Page: 1 1
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Before page loop - %%Page: 1 1
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Copying page 1...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PAGE: 1 1
    D [22/Feb/2014:18:15:10 +0100] Discarding unused job-progress event...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] pagew = 569.0, pagel = 816.0
    D [22/Feb/2014:18:15:10 +0100] [Job 300] bboxx = 0, bboxy = 0, bboxw = 595, bboxl = 842
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PageLeft = 13.0, PageRight = 582.0
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PageTop = 829.0, PageBottom = 13.0
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PageWidth = 595.0, PageLength = 842.0
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 1 pages...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PID 708 (pstops) exited with no errors.
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] PID 704 (/usr/lib/cups/filter/pdftops) exited with no errors.
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:10 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Read 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Wrote 8192 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Read 3272 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Wrote 3272 bytes of print data...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Sent 216264 bytes...
    D [22/Feb/2014:18:15:11 +0100] [Job 300] Waiting for read thread to exit...
    I [22/Feb/2014:18:15:15 +0100] Saving job.cache...
    D [22/Feb/2014:18:15:15 +0100] cupsdSetBusyState: newbusy="Printing jobs", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:18 +0100] [Job 300] Read thread still active, aborting the pending read...
    D [22/Feb/2014:18:15:19 +0100] [Job 300] PID 705 (/usr/lib/cups/backend/usb) exited with no errors.
    D [22/Feb/2014:18:15:19 +0100] [Job 300] time-at-completed=1393089319
    D [22/Feb/2014:18:15:19 +0100] Discarding unused job-completed event...
    I [22/Feb/2014:18:15:19 +0100] [Job 300] Job completed.
    D [22/Feb/2014:18:15:19 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:15:19 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs"
    D [22/Feb/2014:18:15:19 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:19 +0100] Discarding unused printer-state-changed event...
    D [22/Feb/2014:18:15:19 +0100] cupsdMarkDirty(---J-)
    D [22/Feb/2014:18:15:19 +0100] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:20 +0100] [Job 300] Unloading...
    I [22/Feb/2014:18:15:50 +0100] Saving job.cache...
    D [22/Feb/2014:18:15:50 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Printing jobs and dirty files"
    D [22/Feb/2014:18:15:50 +0100] Report: clients=1
    D [22/Feb/2014:18:15:50 +0100] Report: jobs=300
    D [22/Feb/2014:18:15:50 +0100] Report: jobs-active=0
    D [22/Feb/2014:18:15:50 +0100] Report: printers=1
    D [22/Feb/2014:18:15:50 +0100] Report: stringpool-string-count=1580
    D [22/Feb/2014:18:15:50 +0100] Report: stringpool-alloc-bytes=8880
    D [22/Feb/2014:18:15:50 +0100] Report: stringpool-total-bytes=27368
    D [22/Feb/2014:18:16:31 +0100] [Client 13] HTTP_STATE_WAITING Closing on EOF
    D [22/Feb/2014:18:16:31 +0100] [Client 13] Closing connection.
    D [22/Feb/2014:18:16:31 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [22/Feb/2014:18:16:32 +0100] [Client 13] Accepted from localhost:631 (IPv6)
    D [22/Feb/2014:18:16:32 +0100] [Client 13] Waiting for request.
    D [22/Feb/2014:18:16:32 +0100] [Client 13] GET /printers/ HTTP/1.1
    D [22/Feb/2014:18:16:32 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [22/Feb/2014:18:16:32 +0100] [Client 13] No authentication data provided.
    D [22/Feb/2014:18:16:32 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@bertrandrussell"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.1"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [22/Feb/2014:18:16:32 +0100] [CGI] envp[13] = "USER=root"
    D [22/Feb/2014:

  • How to Sort JTable data using Multiple fields (Date, time and string)

    I have to fill the JTable data with some date, time and string values. for example my table data looks like this:
    "1998/12/14","15:14:38","Unicorn1","row1"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/17","12:14:12","Unicorn4","row6"
    Now the Sorted Table should be in the following way:
    "1998/12/17","12:14:12","Unicorn4","row6"
    "1998/12/14","15:14:40","Unicorn4","row3"
    "1998/12/14","15:14:39","Unicorn2","row2"
    "1998/12/14","15:14:38","Unicorn1","row1"
    ie First Date field should be sorted, if 2 date fields are same then sort based on time. if date and time fields are same then need to be sorted on String field.
    So if any one worked on this please throw some light on how to proceed. I know how to sort based on single column.
    But now i need to sort on multiple columns.So what is code change in the Comparater class.
    Thanks in advance.. This is urgent....

    I think your Schedule objects should implement Comparable. Then you can sort your linked list using the Collections.sort() method without passing in a Comparator.class Schedule(Date date, String class) implements Comparable
      public void compareTo(Object obj)
        Schedule other = (Schedule)obj;
        return date.getTime() - other.getDate().getTime();
    }

  • DATE type returned from function does not return the time component

    Hi,
    I'm dealing with a strange problem. I have a PL/SQL function (running on Oracle 8.1.4.7) which returns a DATE value. Like we all know the DATE datatype includes a date component and a time component.
    The function I used for testing is like this:
    FUNCTION ReturnDate return Date is
    dReturn Date;
    Begin
    select sysdate into dReturn from dual;
    return dReturn;
    end ReturnDate;
    When I call this function from .NET using ODP.NET the date value I get does not have the time component included only the day-month-year components.
    This is a code-snippet that calls the function :
    command.CommandText="Schema.ReturnDate";
    command.CommandType=CommandType.StoredProcedure;
    command.Parameters.Add("Return_Value",
    OracleDbType.Date,0,ParameterDirection.ReturnValue);
    command.ExecuteNonQuery();
    I use the OracleDbType.Date type which I think is the most logical choice, because the type in the Database is after all DATE.
    However this does not include the time componet. But if I change the OracleDbType.Date to OracleDbType.TimeStamp I get the time component. I'm not happy with this "hack" because I'm not sure what will happen when we upgrade our version of the Database to Oracle 9i which uses the new TimeStamp datatype.
    Is this a bug that the OracleDbType.Date does not include the time component??

    How do you examine the output Date value?
    If it is from the string, then the time components will
    not show because the NLS_DATE format in the client
    machine does not contain the time components.
    In American, the Date format is 'DD-MON-RR' by default whereas, the TimeStamp format is 'DD-MON-RR HH.MI.SSXFF AM' by default.
    Can you take a look at the time components from the OracleDate by accessing the time properties, eg. OracleDate.Hour, OracleDate.Minute..etc to see if the time values are there?
    Thanks
    Martha

  • How to write JSP that returns current time(AJAX)

    how to make jsp returns current system time in response
    i am using the following code
    test.jsp
    <%@page pageEncoding="UTF-8" import="java.util.Date" import="java.util.*" import="java.lang.*"%>
    <%
    out = response.getWriter();
    out.println(System.currentTimeMillis());
    %>where as i am following an .ASP file working well with code
    test.asp
    <%
    response.expires=-1
    response.write(time)
    %>

    Chkeck this out
    Ajax_Time.htm
    <html>
    <body>
    <script type="text/javascript">
    function ajaxFunction()
    var xmlHttp;
    try
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    catch (e)
    // Internet Explorer
    try
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    catch (e)
    try
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    catch (e)
    alert("Your browser does not support AJAX!");
    return false;
    xmlHttp.onreadystatechange=function()
    if(xmlHttp.readyState==4)
    document.myForm.time.value=xmlHttp.responseText;
    xmlHttp.open("GET","time.jsp",true);
    xmlHttp.send(null);
    </script>
    <form name="myForm">
    Name: <input type="text"
    onkeyup="ajaxFunction();" name="username" />
    Time: <input type="text" name="time" />
    </form>
    </body>
    </html>
    time.jsp
    <%@ page import="java.text.*,java.util.*" session="false"%>
    <%!
    DateFormat fmt = new SimpleDateFormat("hh:mm:ss aa");
    String now = fmt.format(new Date());
    %>
    The time is <%= now %>

  • NcGetTimer returning OS time with USB-8473?

    I have a opservation I would like to have confirmed.
    When using the ncGetTimer from the CAN Frame API with a NI-CAN USB-8473 I get the OS timestamp in second, and NOT the 8473 timer value. This give me a very bad resolution, as the OS resolution is only a little under 16 ms.
    Can it really be that the ncGetTimer.vi return the OS time and not the time on the card ? or is it a limitation on the USB-8473 ?
    I have done a simple example:
    And from a run with this, it is clear that ncGetTimer.vi is not returning the timer value from the card, but for the OS.
    If this is want to expect from this .vi, then the help should be updated with this kind of limitation.

    Hi dkfire
    Thank you for the detailed description of your observations. The following KnowledBase describe what NI-CAN API functions are supported by the NI USB-847x;
    Which NI-CAN Frame API Functions does the NI USB-847x Device Support?
    http://digital.ni.com/public.nsf/allkb/E1A44077DA6C819186257288006B76D7?OpenDocument
    From the article please note that the ncGetTimer.vi is not supported by your USB-8473, and that is why you will find the behavior different than described in the help file.
    Best regards 
    Anders Rohde
    Applications Engineer
    National Instruments Denmark

  • HT4623 My iphone 5 will not update apps, is stuck in "waiting", reset using soft reset several times, then went into settings, general and reset twice, still frozen apps in waiting and will not update anymore.

    Iphone 5 will not update apps. s
    Stuck in "waiting" even after multiple resets to phone and through settings. HELP!

    Have you tried deleting the waiting apps and then re downloading? I used to get it all the time on my phone in iOS 7.

  • How to play one clip multiple times at the same time?

    I am writing a little game where a certain sound has to be played quite frequently. I load it as a Clip and play it with
    myClip.setFramePosition(0);
    myClip.loop(0);If the sound has to be played again but is still being played by another event, the setFramePosition() method resets the sound and the first playing instance is cut off.
    A workaround would be that each object that needs to play this sound would get its own copy, but that is not feasible due to heavy memory consumption.
    So here it goes: How can I play a single sound multiple times at the same time? Is that possible?
    Edited by: andrasz on Feb 27, 2009 12:37 AM

    If the sound has to be played again but is still being played by another event, the setFramePosition() method resets the sound and the first playing instance is cut off.
    A workaround would be that each object that needs to play this sound would get its own copy, but that is not feasible due to heavy memory consumption.
    So here it goes: How can I play a single sound multiple times at the same time? Is that possible?Ummmm, if you're using a clip, you'll have to maintain one copy per object that needs to play the sound concurrently. You could keep one master copy, and then create copies of the clip as necessary to play them, and then just dump the copies to decrease memory consumption.
    A second idea would be to write your own Clip class. Esentially, all you would need to do is dump some sound data onto a TargetDataline to play it. It'll handle the buffering and playing at the correct speed itself. If that's all you did, you should be able to dump multiple times from the same instance and play it multiple times.
    Obviously, that's just a theory. In practice, it may not work that way...

  • How to cell register the date/time when you put a value in another cell

    Hello guys!
    How do I get a cell (eg A2) tell the date and time when I put a value in another cell (eg A1) in Numbers?
    For example, I want to register a cell to read my electricity meter.
    I write in cell A1: 45809. When placing this value in A1, I want to appear (on A2) the date and time when I did that record automatically. Is it possible?
    I hope you understood the question!
    Thank you in advance to those who try to help.

    There is not automatic time stamping of on entry of a time.  One suggestion I've seen has a cell that has the current date and time.  Everytime you cahnge any cell that cell will update.  You can then copy that cell and paste the value into your date/time cell adjacent to the meter reading:
    Create a new, plain table:
    Now in cell A1 enter the formula "=now()"  short hand for this is:
    A1=now()
    now resize the table so it is a table that is 1 cell by 1 cell by selecting any cell, then dragging the table size control in the bottom right corrner towards cell A1:
    It should look like this when you have completed this task:
    Now create another new, plain table and enter "Date" for cell A1, and "Meter Reading" for B1:
    Now you can enter a meter reading (I entered "45671").  Now select the CELL that has current date and time from the first table at the very top, and copy:
    Now select the cell in the date column where you want to put the current date and paste values by using the menu item "Edit > Paste Value":

  • When I edit a song in itunes (i.e change the year) on purchased songs, the next time I return to itunes, the information has reverted back to the original information. How can I change that?

    When I edit a song in itunes (i.e change the year) on purchased songs, the next time I return to itunes, the information has reverted back to the original information. How can I change that?
    When I purchase ITunes music, and it is a song from a Greatest Hits album, the Year of the song shows the year the CD was released and not the year the song was released (i.e. a song may be from 1986, but the Greatest Hits album was released in 1999, so my songs in ITunes show 1999).    So, I go into each of those songs and change it to the year that I want to be displayed. As long as I don't exit out of ITunes, it will show the year that I changed it to (i.e. the 1986 year in this case). But if I exit out of ITunes and then return to ITunes, the year reverts back to 1999. The same happens if I change the genre of a song from, say 'Pop' to 'Alternative', it will revert back the next time I log in.
    Oddly enough, as soon as I right-click on that song to change it back, the year/genre that I had entered returns.
    How can I make it so my changes are permanently displayed as I want them?  This is pretty annoying when I try to find a song on my Ipod under a certain genre, but it doesn't appear in that genre because the incorrect information gets synched to the Ipod.

    Make sure that these two options in Edit > Preferences > Store are turned off:
    Then exit iTunes and open it up again.  Your metadata entries should then be persistent - with these options checked iTunes will be comparing what you have with the information held in the iTunes Store, and will overwrite with the latter for Store purchases (and if you have iTunes Match).  If you have any iOS devices you should also turn off Show All Music under Settings > Music.

  • Tries to connect multiple times at the same time a...

    Tries to connect multiple times at the same time after trying to reinstalling software.

    Hello,
    Assuming that you use a Web version (this information MUST be provided in any post), you have 2 ways to run reports:
    1. the Run_Report_Object built-in
    2. the Web.Show_Document() built-in
    Francois

  • I can convert almost things multiple times at the same time including CMYK to RGB (or sRGB), but not RGB to CMYK and not brighten/contrast. How?

    I can convert almost things multiple times at the same time including CMYK to RGB (or sRGB), but not RGB to CMYK and not brighten/contrast. How?

    If you want a relevant answer you may have to elaborate on what you actually mean. Posting screenshots might help, too.
    In any case multiple conversions of an image are not advisable in general.

Maybe you are looking for

  • Report for Parked Invoices

    Dear gurus Im generating a report using structure RFPOSXEXT. problem im facing is that im getting all the document numbers which are open items and cleared items but im not getting the document number of a parked items. can you tell me how. ? regards

  • Can i create a sequence using java?

    Hi, I have a problem here. I have to update records to my oracle9i database. One of the fields in my tables has to be auto number, meaning whenever i add records to this table, this fields will automatically be updated jus like a counter. I am told t

  • DrillDown Flash Chart

    After having success building simple charts I've been trying lately to implement a more complex chart. It's a DrillDown Chart with a click event that changes the displayed data based on the column that was clicked. Here is the working Adobe example:

  • "General Error" when building from Quicktime Reference

    Just a few weeks ago I exported an hour long video as a Quicktime Reference from Avid Media Composer 7, imported it into Encore and built it to a Blu-ray folder. Everything worked as it should. Today I had two 5 minute videos exported from Avid as QT

  • Help on wireless card linksys WMP54G

    http://bbs.archlinux.org/viewtopic.php?id=63322 please help. Sorry for double post. Thanks.