Giter Site home page Giter Site logo

where form saves log? about python-form HOT 1 OPEN

FeelUsM avatar FeelUsM commented on July 21, 2024
where form saves log?

from python-form.

Comments (1)

tueda avatar tueda commented on July 21, 2024 1

As far as I remember, keep_log is the option to keep FORM's piped output (which could be in general gigantic) in memory, in order to show a proper error message when something wrong happens with FORM:

The other argument ``keep_log`` indicates whether the log from FORM is
kept and used as detailed information when an error occurs.
If the value is >= 2, it specifies the maximum number of lines for
the scrollback. The default value is False.

So, this is not what you want.

.str files are FORM's temporary files, used for storing big data that doesn't fit in memory, and will be deleted when FORM successfully exits.

FORM has the -l option to save logs, but it writes the log into the directory where the main .frm file is sitting, not in the current directory. For example,

import form

with form.open("form -l") as f:
    f.write('''
        On stats;
        Auto V p;
        L F = g_(0,p1,...,p6);
        trace4,0;
        .sort
    ''')
    print(f.read('F'))
    print(f.read("`NAME_'"))

writes the log to init.log in the directory which you can find by f.read("`NAME_'").

from python-form.

Related Issues (3)

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.