1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Some clean-ups and additions to Logger and FileLogger classes. Added some logging to the Introjucer.

This commit is contained in:
jules 2012-09-19 15:22:39 +01:00
parent 2ac8615c7e
commit e77d5b12ef
13 changed files with 229 additions and 149 deletions

View file

@ -47,14 +47,15 @@ namespace Tags
const char* Project::projectFileExtension = ".jucer";
//==============================================================================
Project::Project (const File& file_)
Project::Project (const File& f)
: FileBasedDocument (projectFileExtension,
String ("*") + projectFileExtension,
"Choose a Jucer project to load",
"Save Jucer project"),
projectRoot (Tags::projectRoot)
{
setFile (file_);
Logger::writeToLog ("Loading project: " + f.getFullPathName());
setFile (f);
removeDefunctExporters();
setMissingDefaultValues();