Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Sass Basics Add Reusable Logic to Your Sass Handling Errors with @error and @warn

@warn did not show a message in the console. @error worked fine and stopped the compiler.

When I changed @error to @warn the compiler kept going and the page displayed but back in the console there were no warnings. Has something changed with this feature?

Hi, Heidi :) The exact same thing happened to me too. I'd also like to know about what you mentioned. Thank you for posting this.

1 Answer

As far as I can tell, the difference is that warnings can be turned off (i.e. set to not display in the console), and since they don't stop the compilation, it just keeps going.

Errors, on the other hand, stop the compiler and will show the error inline where it occurred, so you should always see something in the console.