diff options
Diffstat (limited to 'numpy/distutils/command/build_src.py')
-rw-r--r-- | numpy/distutils/command/build_src.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_src.py b/numpy/distutils/command/build_src.py index 9b4e81db0..131bb8d41 100644 --- a/numpy/distutils/command/build_src.py +++ b/numpy/distutils/command/build_src.py @@ -224,7 +224,8 @@ class build_src(build_ext.build_ext): sources, h_files = self.filter_h_files(sources) if h_files: - print self.package,'- nothing done with h_files=',h_files + log.info('%s - nothing done with h_files = %s', + self.package, h_files) #for f in h_files: # self.distribution.headers.append((lib_name,f)) @@ -269,7 +270,8 @@ class build_src(build_ext.build_ext): sources, h_files = self.filter_h_files(sources) if h_files: - print package,'- nothing done with h_files=',h_files + log.info('%s - nothing done with h_files = %s', + package, h_files) #for f in h_files: # self.distribution.headers.append((package,f)) |