Xcode 10 FBSDK 'SDKLoggingBehavior
Adding to @JAL's answer:
For me, installing pods still giving me version 0.3.0
modifying PodFile
with latest version number gives me latest sdk
pod 'FacebookCore','0.5.0'
pod 'FacebookLogin','0.5.0'
pod 'FacebookShare','0.5.0'
This is fixed in the latest release, 0.3.1 (as of June 8th, 2018).
Old answer:
This is fixed in the latest master, but not in the latest tag or Cocoapod release.
To use this, clone the code directly from the master branch into your project from the Swift SDK repo, or change your podfile to point to master:
pod 'FacebookCore', :git => 'https://github.com/facebook/facebook-sdk-swift', :branch => 'master'
The pull request that fixed this issue can be found here.