Changeset 1739 for trunk/docx4j/src/main


Ignore:
Timestamp:
01/03/12 09:07:31 (5 months ago)
Author:
jharrop
Message:

Change some error level debugging to warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/model/styles/StyleTree.java

    r1215 r1739  
    7070                Style style = allStyles.get(styleId); 
    7171                if (style == null ) { 
    72                         log.error("Couldn't find style: " + styleId); 
     72                        log.warn("Couldn't find style: " + styleId); 
    7373                        continue; 
    7474                }                                
     
    9090                Style style = allStyles.get(styleId); 
    9191                if (style == null ) { 
    92                         log.error("Couldn't find style: " + styleId); 
     92                        log.warn("Couldn't find style: " + styleId); 
    9393                        continue; 
    9494                }                                
     
    110110                Style style = allStyles.get(styleId); 
    111111                if (style == null ) { 
    112                         log.error("Couldn't find style: " + styleId); 
     112                        log.warn("Couldn't find style: " + styleId); 
    113113                        continue; 
    114114                }                                
Note: See TracChangeset for help on using the changeset viewer.