Giter Site home page Giter Site logo

Comments (8)

sebastianw avatar sebastianw commented on June 29, 2024

The script doesn't create a logfile by itself at all. If you want all the errors and the output in a logfile do something like:

>script.log 2>&1

from gallery2picasa.

 avatar commented on June 29, 2024

Oh so there is no logging of the video it skips, because if the size?
that would be a nice feature, to have a skiped files log...

from gallery2picasa.

sebastianw avatar sebastianw commented on June 29, 2024

The script output should mention the video file, like normal... You posted the output to gh-8 so it's there.

from gallery2picasa.

 avatar commented on June 29, 2024

An easy way of creating a logfil.

import subprocess, os, sys

sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

tee = subprocess.Popen(["tee", "log.txt"], stdin=subprocess.PIPE)
os.dup2(tee.stdin.fileno(), sys.stdout.fileno())
os.dup2(tee.stdin.fileno(), sys.stderr.fileno())

from gallery2picasa.

sebastianw avatar sebastianw commented on June 29, 2024

As I wrote above, you can use normal shell redirection to create a log file. There is no need for the program to do it.

from gallery2picasa.

 avatar commented on June 29, 2024

yes but if I try to do a /gallery2picasa............. | tee file.log nothing happens.

seems like "|" is not allowed.

from gallery2picasa.

sebastianw avatar sebastianw commented on June 29, 2024

I cannot reproduce the issue. It works on my end.

from gallery2picasa.

 avatar commented on June 29, 2024

What if you want to interact with the script while logging?
Den 29/11/2011 21.58 skrev "Sebastian Wiesinger" <
[email protected]

:

I cannot reproduce the issue. It works on my end.


Reply to this email directly or view it on GitHub:
#9 (comment)

from gallery2picasa.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.