Giter Site home page Giter Site logo

newlines in output files? about fern HOT 6 CLOSED

waynenilsen avatar waynenilsen commented on August 15, 2024
newlines in output files?

from fern.

Comments (6)

daboross avatar daboross commented on August 15, 2024

The behavior is defined in https://github.com/daboross/fern-rs/blob/master/src/loggers.rs#L109.

However, there doesn't currently seem to be a way to get the system line separator defined in the rust standard library. Do you think a way to set the line separator in the logger configuration would suffice for this (defaulting to \n)?

from fern.

waynenilsen avatar waynenilsen commented on August 15, 2024

I added an rfc so we'll see if they want to add that functionality or not. I think it is pretty low hanging fruit for the 1.0 release.

from fern.

SimonSapin avatar SimonSapin commented on August 15, 2024

This doesn’t have to be in the standard library, you can use cfg attributes for conditional compilation:

#[cfg(windows)]
const NEWLINE: &'static str = "\r\n";

#[cfg(not(windows))]
const NEWLINE: &'static str = "\n";

from fern.

waynenilsen avatar waynenilsen commented on August 15, 2024

It doesn't have to be but it certainly could be. I just wanted to give the rust team a chance to add it as a feature if they want to.

from fern.

daboross avatar daboross commented on August 15, 2024

Since there hasn't been that much discussion on the rust issue, I'm just going to implement a configurable value for now.

It seems better (to me at least) to not implicitly change behavior depending on platform, and instead allow the user of the library to explicitly choose what newline separator they want (if it isn't \n).

from fern.

daboross avatar daboross commented on August 15, 2024

Since fern 0.3.5, setting a custom line separator has been supported. In fern 0.4.0, this can be done with Output::file.

I'm going to close now, as I think it's reasonable to let the user decide if they need platform-specific line endings. I'd rather not have fern decide this for the user, but if rust ever adds the line-ending constant mentioned above, I would be glad to re-visit this!

from fern.

Related Issues (20)

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.