Skip to content

Commit c0a88a3

Browse files
authored
remove 4 page limit & hide warnings
1 parent cf2651e commit c0a88a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cewe2pdf/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static void Main(string[] args) {
99
// settings that should get a commandline interface at some point
1010
string mcfPath = "Test.mcf";
1111
string pdfPath = "Converted.pdf";
12-
int toPage = 4; // process to page (useful for testing) 0 to process all.
12+
int toPage = 0; // process to page (useful for testing) 0 to process all.
1313

1414
// make sure to print commandline input errors
1515
Log.level = Log.Level.Error;
@@ -34,7 +34,7 @@ static void Main(string[] args) {
3434
System.Diagnostics.Stopwatch timer = System.Diagnostics.Stopwatch.StartNew();
3535

3636
// only show user messages
37-
Log.level = Log.Level.Info;
37+
Log.level = Log.Level.Error;
3838

3939
Log.Message("Loading '" + mcfPath + "'...");
4040

0 commit comments

Comments
 (0)