Remove useless log blank space
This commit is contained in:
		
							parent
							
								
									934c803c25
								
							
						
					
					
						commit
						d030a6a696
					
				@ -20,7 +20,7 @@ int main(int argc, char *argv[]) {
 | 
				
			|||||||
  size_t n = devices.size();
 | 
					  size_t n = devices.size();
 | 
				
			||||||
  LOG_IF(FATAL, n <= 0) << "No MYNT EYE devices :(";
 | 
					  LOG_IF(FATAL, n <= 0) << "No MYNT EYE devices :(";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  LOG(INFO) << "MYNT EYE devices: ";
 | 
					  LOG(INFO) << "MYNT EYE devices:";
 | 
				
			||||||
  for (size_t i = 0; i < n; i++) {
 | 
					  for (size_t i = 0; i < n; i++) {
 | 
				
			||||||
    auto &&device = devices[i];
 | 
					    auto &&device = devices[i];
 | 
				
			||||||
    auto &&name = device->GetInfo(Info::DEVICE_NAME);
 | 
					    auto &&name = device->GetInfo(Info::DEVICE_NAME);
 | 
				
			||||||
 | 
				
			|||||||
@ -345,7 +345,7 @@ class ROSWrapperNodelet : public nodelet::Nodelet {
 | 
				
			|||||||
    size_t n = devices.size();
 | 
					    size_t n = devices.size();
 | 
				
			||||||
    NODELET_FATAL_COND(n <= 0, "No MYNT EYE devices :(");
 | 
					    NODELET_FATAL_COND(n <= 0, "No MYNT EYE devices :(");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    NODELET_INFO_STREAM("MYNT EYE devices: ");
 | 
					    NODELET_INFO_STREAM("MYNT EYE devices:");
 | 
				
			||||||
    for (size_t i = 0; i < n; i++) {
 | 
					    for (size_t i = 0; i < n; i++) {
 | 
				
			||||||
      auto &&device = devices[i];
 | 
					      auto &&device = devices[i];
 | 
				
			||||||
      auto &&name = device->GetInfo(Info::DEVICE_NAME);
 | 
					      auto &&name = device->GetInfo(Info::DEVICE_NAME);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user